├── .buckconfig ├── .buckroot ├── .dockerignore ├── .editorconfig ├── .envrc ├── .github ├── dependabot.yml ├── graphql-inspector.yaml ├── labeler.yml ├── stale.yml └── workflows │ ├── check-code-and-unit-test.yaml │ ├── check-sdls.yml │ ├── codeql-analysis.yml │ ├── e2e-test.yml │ ├── generate-graphql-docs.yml │ ├── graphql-diff.yml │ ├── integration-test.yml │ ├── labeler.yml │ ├── mobile-schema-compatibility.yml │ ├── mongodb-migrate.yml │ ├── quickstart.yml │ ├── spelling.yml │ └── vendor │ ├── nodejs-audit.yml │ ├── nodejs-check-code.yml │ └── spelling.yml ├── .gitignore ├── ARCHITECTURE.md ├── BUCK ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── apps ├── admin-panel │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── BUCK │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── account │ │ │ ├── [uuid] │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── search-action.ts │ │ ├── api │ │ │ └── auth │ │ │ │ └── [...nextauth] │ │ │ │ ├── options.ts │ │ │ │ └── route.ts │ │ ├── env.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── graphql-rsc.tsx │ │ ├── layout.tsx │ │ ├── merchants │ │ │ └── page.tsx │ │ ├── notifications │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── transactions │ │ │ ├── hash │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ ├── id │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ ├── invoice │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── payment │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ └── search-action.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── codegen.yml │ ├── components │ │ ├── account │ │ │ ├── details.tsx │ │ │ └── update.tsx │ │ ├── confirm.tsx │ │ ├── icons │ │ │ ├── compose.svg │ │ │ ├── logout.svg │ │ │ ├── people.svg │ │ │ ├── search-globe.svg │ │ │ ├── search.svg │ │ │ ├── svg.types.d.ts │ │ │ └── transactions.svg │ │ ├── merchants │ │ │ ├── details.tsx │ │ │ └── update.tsx │ │ ├── notification │ │ │ ├── builder.tsx │ │ │ ├── filtered-sender.tsx │ │ │ ├── languages.ts │ │ │ ├── notification-actions.tsx │ │ │ ├── test-sender.tsx │ │ │ └── types.tsx │ │ ├── search-header.tsx │ │ ├── side-bar.tsx │ │ └── transactions │ │ │ ├── list.tsx │ │ │ ├── ln-invoice.tsx │ │ │ └── ln-payment.tsx │ ├── generated.ts │ ├── graphql.gql │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── jest.config.js │ ├── jest.setup.js │ ├── middleware.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.js │ ├── prettierrc.js │ ├── public │ │ ├── gt.js │ │ ├── logo.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── tailwind.config.ts │ └── tsconfig.json ├── consent │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── BUCK │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── consent │ │ │ └── page.tsx │ │ ├── error-handler.ts │ │ ├── error.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── graphql │ │ │ ├── apollo-config.ts │ │ │ ├── generated.ts │ │ │ └── queries │ │ │ │ ├── get-supported-countries.ts │ │ │ │ └── me-query.ts │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── login │ │ │ ├── email-login-form.tsx │ │ │ ├── email-login-server-action.ts │ │ │ ├── email-login.types.ts │ │ │ ├── page.tsx │ │ │ ├── phone │ │ │ │ ├── page.tsx │ │ │ │ └── server-actions.ts │ │ │ ├── telegram │ │ │ │ ├── page.tsx │ │ │ │ ├── server-actions.ts │ │ │ │ └── telegram-auth-form.tsx │ │ │ └── verification │ │ │ │ ├── form.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── server-actions.ts │ │ │ │ └── verification.types.ts │ │ ├── logout │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── register │ │ │ └── page.tsx │ │ └── types │ │ │ ├── index.types.ts │ │ │ └── phone-auth.types.ts │ ├── codegen.yml │ ├── components │ │ ├── button │ │ │ ├── primary-button-component.tsx │ │ │ └── secondary-button-component.tsx │ │ ├── captcha-challenge │ │ │ └── index.tsx │ │ ├── card │ │ │ ├── card.module.css │ │ │ └── index.tsx │ │ ├── form-component.tsx │ │ ├── heading.tsx │ │ ├── input-component.tsx │ │ ├── loader │ │ │ ├── index.tsx │ │ │ └── loader.module.css │ │ ├── login-link.tsx │ │ ├── logo │ │ │ └── index.tsx │ │ ├── main-container │ │ │ ├── index.tsx │ │ │ └── main-content.module.css │ │ ├── next-themes-provider.tsx │ │ ├── phone-auth │ │ │ ├── index.tsx │ │ │ ├── phone-auth-form.tsx │ │ │ └── phone-input-styles.css │ │ ├── register-link.tsx │ │ ├── scope-item │ │ │ ├── scope-item.module.css │ │ │ └── scope-item.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sub-heading.tsx │ │ ├── tab │ │ │ └── sign-in-tabs.tsx │ │ ├── toast-provider.tsx │ │ └── varification-components │ │ │ ├── two-fa-verification-code-form.tsx │ │ │ └── verification-code-form.tsx │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── login-email.cy.ts │ │ │ ├── login-phone.cy.ts │ │ │ └── login-telegram.cy.ts │ │ └── support │ │ │ ├── commands.ts │ │ │ ├── e2e.ts │ │ │ └── test-config.ts │ ├── env.ts │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── blink_logo.svg │ │ ├── gt.js │ │ ├── logo │ │ │ ├── email.svg │ │ │ └── phone.svg │ │ └── telegram-passport.js │ ├── script.log │ ├── services │ │ ├── galoy-auth │ │ │ ├── auth-instance.ts │ │ │ └── index.ts │ │ └── hydra.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── dashboard │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── BUCK │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── api-keys │ │ │ ├── api-key.types.ts │ │ │ ├── page.tsx │ │ │ └── server-actions.ts │ │ ├── api │ │ │ └── auth │ │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── batch-payments │ │ │ ├── get-user-details-action.ts │ │ │ ├── index.types.ts │ │ │ ├── page.tsx │ │ │ ├── server-actions.ts │ │ │ └── utils.ts │ │ ├── callback │ │ │ ├── callback.types.ts │ │ │ ├── page.tsx │ │ │ └── server-actions.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── index.types.ts │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── page.tsx │ │ ├── security │ │ │ ├── 2fa │ │ │ │ ├── add │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── verify-form.tsx │ │ │ │ ├── server-actions.ts │ │ │ │ └── totp.types.ts │ │ │ ├── email │ │ │ │ ├── add │ │ │ │ │ └── page.tsx │ │ │ │ ├── email.types.ts │ │ │ │ ├── server-actions.ts │ │ │ │ └── verify │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── verify-form.tsx │ │ │ └── page.tsx │ │ ├── transactions │ │ │ ├── page.tsx │ │ │ └── transactions.types.ts │ │ ├── url.ts │ │ └── utils.ts │ ├── codegen.yml │ ├── components │ │ ├── api-keys │ │ │ ├── api-card.tsx │ │ │ ├── btc-pay-tabs.tsx │ │ │ ├── create.tsx │ │ │ ├── form.tsx │ │ │ ├── list.tsx │ │ │ ├── modal.tsx │ │ │ ├── result.tsx │ │ │ ├── revoke.tsx │ │ │ └── utils.ts │ │ ├── batch-payments │ │ │ ├── index.tsx │ │ │ ├── list.tsx │ │ │ └── sample-table.tsx │ │ ├── callback │ │ │ ├── callback-delete.tsx │ │ │ ├── callback-input.tsx │ │ │ ├── callback-item.tsx │ │ │ └── callback-list.tsx │ │ ├── chart │ │ │ └── index.tsx │ │ ├── color-toggle.tsx │ │ ├── content-container.tsx │ │ ├── details-card │ │ │ ├── derails.tsx │ │ │ └── index.tsx │ │ ├── form-submit-button.tsx │ │ ├── header.tsx │ │ ├── heading.tsx │ │ ├── logo.tsx │ │ ├── security │ │ │ ├── email │ │ │ │ └── email.tsx │ │ │ └── twoFactorAuthSettings │ │ │ │ └── index.tsx │ │ ├── session-provider.tsx │ │ ├── side-bar │ │ │ ├── index.tsx │ │ │ ├── navigation-links.tsx │ │ │ ├── side-bar-overlay.tsx │ │ │ └── side-bar-style.tsx │ │ ├── transaction-details │ │ │ ├── export-csv.tsx │ │ │ ├── index.types.ts │ │ │ ├── page-number.tsx │ │ │ ├── transaction-card-item.tsx │ │ │ └── transaction-details-table.tsx │ │ ├── upload-button.tsx │ │ ├── utils.ts │ │ └── wallet-balance │ │ │ ├── wallet-balance-card.tsx │ │ │ └── wallet-balance-container.tsx │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── api-keys.cy.ts │ │ │ ├── batch-payments.cy.ts │ │ │ └── callback.cy.ts │ │ ├── fixtures │ │ │ └── template.csv │ │ └── support │ │ │ ├── commands.ts │ │ │ ├── e2e.ts │ │ │ └── test-data.ts │ ├── dev │ │ └── get-btc.sh │ ├── env.ts │ ├── hook │ │ └── use-processed-transactions-for-chart.tsx │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── jest.config.ts │ ├── lib │ │ ├── fetch-transactions-by-count.ts │ │ ├── get-balance-for-transactions.ts │ │ └── index.types.ts │ ├── middleware.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── services │ │ └── graphql │ │ │ ├── generated.ts │ │ │ ├── index.ts │ │ │ ├── mutations │ │ │ ├── api-keys.ts │ │ │ ├── callback-mutation.ts │ │ │ ├── email.ts │ │ │ ├── intra-ledger-payment-send │ │ │ │ ├── btc.ts │ │ │ │ └── usd.ts │ │ │ └── totp.ts │ │ │ └── queries │ │ │ ├── api-keys.ts │ │ │ ├── callback-query.ts │ │ │ ├── get-transactions.ts │ │ │ ├── get-user-wallet-id.ts │ │ │ ├── me-data.ts │ │ │ └── realtime-price.ts │ ├── tailwind.config.ts │ ├── test │ │ ├── mock-data │ │ │ └── transaction.ts │ │ └── unit │ │ │ └── get-balance-for-transactions.test.ts │ ├── theme │ │ ├── emotion-cache.tsx │ │ ├── theme-registry.tsx │ │ └── theme.ts │ └── tsconfig.json ├── map │ ├── .eslintrc.json │ ├── .gitignore │ ├── BUCK │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── health │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── server-acton.ts │ │ ├── tracing.ts │ │ └── utils.ts │ ├── codegen.yml │ ├── components │ │ ├── input │ │ │ └── index.tsx │ │ ├── logo │ │ │ └── location.tsx │ │ ├── map │ │ │ ├── index.tsx │ │ │ ├── map-theme.ts │ │ │ └── suggest-form.tsx │ │ ├── sheet │ │ │ └── index.tsx │ │ └── utils.ts │ ├── env.ts │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.js │ ├── prettierrc.js │ ├── public │ │ └── logo.svg │ ├── services │ │ └── galoy │ │ │ └── graphql │ │ │ ├── client.ts │ │ │ ├── generated.ts │ │ │ ├── mutation │ │ │ └── merchant-map-suggest.ts │ │ │ └── queries │ │ │ └── business-map-marker.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── pay │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.js │ ├── BUCK │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── [username] │ │ │ ├── layout.tsx │ │ │ ├── manifest │ │ │ │ └── route.ts │ │ │ ├── page.tsx │ │ │ ├── print │ │ │ │ └── page.tsx │ │ │ ├── transaction │ │ │ │ └── page.tsx │ │ │ └── username.module.css │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth] │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── route.ts │ │ │ └── lnurl-proxy │ │ │ │ └── route.ts │ │ ├── checkout │ │ │ ├── [hash] │ │ │ │ ├── hash.module.css │ │ │ │ └── page.tsx │ │ │ └── route.ts │ │ ├── currency-metadata.ts │ │ ├── error │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── graphql │ │ │ └── queries │ │ │ │ ├── invoice-by-hash.ts │ │ │ │ └── me-query.ts │ │ ├── layout.tsx │ │ ├── lnurlp │ │ │ └── [username] │ │ │ │ ├── callback │ │ │ │ └── route.ts │ │ │ │ ├── graphql.ts │ │ │ │ └── route.ts │ │ ├── manifest.ts │ │ ├── page.tsx │ │ ├── print-companion-service.ts │ │ ├── reducer.tsx │ │ ├── sats-currency-metadata.ts │ │ ├── setuppwa │ │ │ ├── page.tsx │ │ │ └── setuppwa.module.css │ │ └── ssr-client.ts │ ├── codegen.yml │ ├── components │ │ ├── apollo-wrapper.tsx │ │ ├── currency │ │ │ └── currency-dropdown.tsx │ │ ├── custom-modal │ │ │ ├── modal.module.css │ │ │ └── modal.tsx │ │ ├── error │ │ │ └── index.tsx │ │ ├── galoy-icon.tsx │ │ ├── invoice │ │ │ ├── expiration-label.tsx │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ ├── index.types.d.ts │ │ │ ├── print-button.tsx │ │ │ ├── receipt.tsx │ │ │ ├── return-button.tsx │ │ │ └── status-actions.tsx │ │ ├── layouts │ │ │ ├── app-layout.module.css │ │ │ ├── checkout-layout.tsx │ │ │ └── username-layout.tsx │ │ ├── loading │ │ │ ├── index.tsx │ │ │ └── loading-component.module.css │ │ ├── memo │ │ │ ├── index.tsx │ │ │ └── memo.module.css │ │ ├── parse-pos-payment │ │ │ ├── digit-button.tsx │ │ │ ├── index.tsx │ │ │ ├── nfc.tsx │ │ │ ├── parse-payment.module.css │ │ │ ├── react-app-env.d.ts │ │ │ ├── receive-invoice.tsx │ │ │ └── web-nfc.d.ts │ │ ├── payment-outcome │ │ │ ├── index.tsx │ │ │ ├── payment-outcome.module.css │ │ │ └── receipt.tsx │ │ ├── pin-to-homescreen │ │ │ ├── browser-modal-content.ts │ │ │ ├── index.tsx │ │ │ └── pin-to-homescreen.module.css │ │ ├── session-provider.tsx │ │ ├── share │ │ │ ├── index.ts │ │ │ ├── share-controller.tsx │ │ │ ├── share-pop-up.tsx │ │ │ ├── share.module.css │ │ │ └── share.tsx │ │ ├── sheet │ │ │ └── index.tsx │ │ ├── sidebar │ │ │ └── index.tsx │ │ ├── success-animation.json │ │ ├── switch │ │ │ └── index.tsx │ │ └── utils.ts │ ├── config │ │ └── config.ts │ ├── context │ │ ├── invoice-context.tsx │ │ └── invoice-status-context.tsx │ ├── cypress.config.ts │ ├── cypress │ │ ├── component │ │ │ └── invoice │ │ │ │ └── expiration-label.cy.tsx │ │ ├── e2e │ │ │ ├── home.cy.ts │ │ │ └── point-of-sale.cy.ts │ │ └── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ ├── e2e.ts │ │ │ └── test-config.ts │ ├── env.ts │ ├── hooks │ │ ├── get-installed-related-apps.d.ts │ │ ├── use-check-installed-apps.tsx │ │ ├── use-create-Invoice.tsx │ │ ├── use-display-currency.tsx │ │ ├── use-dynamic-font-size.tsx │ │ ├── use-realtime-price.tsx │ │ └── use-sat-price.tsx │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── lib │ │ ├── download.ts │ │ ├── graphql │ │ │ ├── generated.ts │ │ │ └── index.types.d.ts │ │ ├── logger.ts │ │ └── utils │ │ │ ├── date-util.ts │ │ │ └── index.ts │ ├── middleware.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── .well-known │ │ │ ├── apple-app-site-association │ │ │ └── assetlinks.json │ │ ├── APPLE-ICON.png │ │ ├── BBLogo.png │ │ ├── BBQRLogo.png │ │ ├── BBW-QRLOGO.png │ │ ├── BlinkPOS.svg │ │ ├── QRLOGO-BBW.png │ │ ├── apple-app-store.png │ │ ├── at-black&white.svg │ │ ├── blink-qr-logo.png │ │ ├── blue-wallet.png │ │ ├── breez-logo.png │ │ ├── chrome-tut-create-shortcut.png │ │ ├── chrome-tut-create.png │ │ ├── chrome-tut-homescreen.png │ │ ├── chrome-tut-polkadot.png │ │ ├── confetti.svg │ │ ├── desktop-safari-choose-tab.png │ │ ├── desktop-safari-pin-to-tab.png │ │ ├── desktop-safari-pinned.png │ │ ├── google-play-badge.png │ │ ├── icon-POS.png │ │ ├── icons │ │ │ ├── backspace-icon.svg │ │ │ ├── blink-logo-icon.svg │ │ │ ├── cancel-icon.svg │ │ │ ├── caret-left.svg │ │ │ ├── cash-register-icon.svg │ │ │ ├── chevron-left-icon.svg │ │ │ ├── close.svg │ │ │ ├── convert-icon.svg │ │ │ ├── copy-icon.svg │ │ │ ├── cross-icon.svg │ │ │ ├── galoy-logo-text-icon.svg │ │ │ ├── lightning-icon.svg │ │ │ ├── log-out.svg │ │ │ ├── logout.svg │ │ │ ├── pencil.svg │ │ │ ├── pin-icon.svg │ │ │ ├── print-icon.svg │ │ │ ├── print-sharp.svg │ │ │ ├── receipt-sharp.svg │ │ │ ├── share-icon-white.svg │ │ │ ├── share-icon.svg │ │ │ └── success-icon.svg │ │ ├── manifest-logo │ │ │ ├── logo128x128.svg │ │ │ ├── logo144x144.svg │ │ │ ├── logo152x152.svg │ │ │ ├── logo192x192.svg │ │ │ ├── logo384x384.svg │ │ │ ├── logo512x512.svg │ │ │ ├── logo72x72.svg │ │ │ └── logo96x96.svg │ │ ├── manifest.json │ │ ├── mobile-chrome-tut.png │ │ ├── muun-logo.png │ │ ├── payment-sound.mp3 │ │ ├── pheonix-logo.png │ │ ├── register-black&white.svg │ │ ├── safari-tut-explanation.png │ │ ├── safari-tut-rename-register.png │ │ ├── safari-tut-share-scroll.png │ │ ├── safari-tut-tab-bar.png │ │ └── wallet-of-satoshi-logo.png │ ├── tailwind.config.ts │ └── tsconfig.json └── voucher │ ├── .eslintrc.js │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.js │ ├── BUCK │ ├── Dockerfile │ ├── app │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ ├── auth.ts │ │ │ │ └── route.ts │ │ ├── graphql │ │ │ └── route.ts │ │ └── lnurlw │ │ │ ├── [unique-hash] │ │ │ └── route.ts │ │ │ └── callback │ │ │ └── [id] │ │ │ └── route.ts │ ├── create │ │ ├── client-side-page.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── manifest.ts │ ├── page.tsx │ ├── redeem │ │ └── page.tsx │ ├── user │ │ └── links │ │ │ ├── page.tsx │ │ │ └── user-link-page.module.css │ └── withdraw │ │ └── [voucher-secret] │ │ ├── lnurl │ │ ├── lnurl.tsx │ │ └── page.tsx │ │ ├── onchain │ │ ├── on-chain-page.module.css │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── voucher-secret.tsx │ │ └── withdraw.module.css │ ├── codegen.yml │ ├── components │ ├── bold.tsx │ ├── button │ │ ├── button.module.css │ │ └── index.tsx │ ├── create │ │ ├── confirm-modal │ │ │ ├── confirm-modal.module.css │ │ │ └── index.tsx │ │ ├── create-link.module.css │ │ ├── create-page-amount │ │ │ └── index.tsx │ │ └── create-page-percentage │ │ │ └── index.tsx │ ├── funds-paid.tsx │ ├── heading.tsx │ ├── info-component │ │ ├── index.tsx │ │ └── info-component.module.css │ ├── input.tsx │ ├── link-details │ │ ├── index.tsx │ │ └── link-details.module.css │ ├── loading │ │ ├── loading-component.module.css │ │ ├── loading-component.tsx │ │ └── page-loading-component.tsx │ ├── modal-component.tsx │ ├── nav-bar │ │ ├── nav-bar.module.css │ │ └── navigation.tsx │ ├── num-pad │ │ ├── index.tsx │ │ └── num-pad.module.css │ ├── select │ │ └── index.tsx │ ├── separator │ │ └── index.tsx │ ├── session-provider.tsx │ ├── sheet │ │ └── index.tsx │ ├── time-bar │ │ └── index.tsx │ ├── user-links │ │ ├── index.tsx │ │ └── user-links.module.css │ └── utils.ts │ ├── config │ ├── apollo-rsc-wrapper.tsx │ ├── apollo.tsx │ ├── appConfig.ts │ ├── jest.config.js │ └── jest.setup.js │ ├── context │ └── currency-context.tsx │ ├── cypress.config.ts │ ├── cypress │ ├── e2e │ │ └── create-withdraw-link.cy.ts │ └── support │ │ ├── commands.ts │ │ ├── e2e.ts │ │ └── test-data.ts │ ├── env.ts │ ├── graphql │ ├── resolvers │ │ ├── index.ts │ │ ├── mutation │ │ │ ├── create-withdraw-link.ts │ │ │ └── redeem-withdraw-link-on-chain.ts │ │ └── query │ │ │ ├── get-withdraw-link.ts │ │ │ └── get-withdraw-links-by-userId.ts │ └── schema.ts │ ├── hooks │ ├── get-installed-related-apps.d.ts │ ├── use-check-installed-apps.tsx │ ├── use-currency-exchange-rate.tsx │ ├── useDisplayCurrency.ts │ └── useSatsPrice.ts │ ├── instrumentation.node.ts │ ├── instrumentation.ts │ ├── jest.config.ts │ ├── lib │ ├── amount-calculator.ts │ ├── graphql │ │ └── generated │ │ │ └── index.ts │ ├── print-companion.ts │ └── utils.ts │ ├── middleware.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── background │ │ └── green-voucher-pattern.svg │ ├── blink-logo.svg │ ├── blink-voucher-logo.svg │ ├── close-outline.svg │ ├── copy.svg │ ├── create-new.svg │ ├── create-voucher-outline.svg │ ├── links-outline.svg │ ├── log-out-outline-red.svg │ ├── menu-outline.svg │ ├── my-voucher.svg │ ├── print.svg │ ├── redeem-outline.svg │ ├── redeem-voucher.svg │ └── share.svg │ ├── services │ ├── db │ │ ├── connection.ts │ │ ├── index.ts │ │ ├── knex.ts │ │ ├── migrations │ │ │ ├── 20240406102113_create_withdraw_links.mjs │ │ │ ├── 20240520210910_adding_platformFee.mjs │ │ │ ├── 20240530124319_adding_display_voucher_price.mjs │ │ │ └── 20250210133521_add_amount_in_sats.mjs │ │ └── schema.ts │ ├── galoy │ │ ├── client │ │ │ ├── escrow │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── mutation │ │ │ ├── ln-invoice-payment-send.ts │ │ │ ├── on-chain-payment-sned.ts │ │ │ └── send-payment-intraledger │ │ │ │ ├── btc.ts │ │ │ │ └── usd.ts │ │ └── query │ │ │ ├── get-real-time-price.ts │ │ │ ├── me.ts │ │ │ └── on-chain-usd-tx-fee.ts │ └── lock │ │ └── index.ts │ ├── tailwind.config.ts │ ├── test │ └── integration │ │ └── lock.test.ts │ ├── tsconfig.json │ └── utils │ └── helpers.ts ├── architecture.iuml ├── babel.config.js ├── bats ├── admin-gql │ ├── account-details-by-account-id.gql │ ├── account-details-by-user-id.gql │ ├── account-details-by-user-phone.gql │ ├── account-details-by-username.gql │ ├── account-update-level.gql │ ├── account-update-status.gql │ ├── filtered-user-count.gql │ ├── marketing-notification-trigger.gql │ ├── merchant-map-delete.gql │ ├── merchant-map-validate.gql │ ├── merchants-pending-approval.gql │ └── user-update-phone.gql ├── ci_run.sh ├── ci_setup_suite.bash ├── core │ ├── api-keys │ │ └── api-keys.bats │ ├── api │ │ ├── account.bats │ │ ├── admin.bats │ │ ├── auth.bats │ │ ├── callback.bats │ │ ├── cron.bats │ │ ├── device-account.bats │ │ ├── intraledger-send.bats │ │ ├── invoices.bats │ │ ├── ln-receive.bats │ │ ├── ln-send.bats │ │ ├── lnurl-send.bats │ │ ├── merchant.bats │ │ ├── notification-settings.bats │ │ ├── oathkeeper.bats │ │ ├── onchain-receive.bats │ │ ├── onchain-send.bats │ │ ├── public-ln-receive.bats │ │ ├── public.bats │ │ ├── quiz.bats │ │ ├── support.bats │ │ ├── transactions.bats │ │ ├── trigger.bats │ │ └── user.bats │ └── notifications │ │ └── notifications.bats ├── gql │ ├── account-default-wallet.gql │ ├── account-delete.gql │ ├── account-details.gql │ ├── account-disable-notification-category.gql │ ├── account-disable-notification-channel.gql │ ├── account-enable-notification-category.gql │ ├── account-enable-notification-channel.gql │ ├── account-limits.gql │ ├── account-update-default-wallet-id.gql │ ├── acknowledge-notification.gql │ ├── api-key-create.gql │ ├── api-keys.gql │ ├── authorization.gql │ ├── business-map-markers.gql │ ├── callback-endpoint-add.gql │ ├── callback-endpoint-delete.gql │ ├── callback-endpoints-list.gql │ ├── contacts.gql │ ├── currency-conversion-estimation.gql │ ├── default-account.gql │ ├── globals.gql │ ├── identity.gql │ ├── intraledger-payment-send.gql │ ├── intraledger-usd-payment-send.gql │ ├── invoice-for-wallet-by-payment-hash.gql │ ├── invoices-by-wallet.gql │ ├── invoices.gql │ ├── list-stateful-notifications-without-bulletin-enabled.gql │ ├── list-stateful-notifications.gql │ ├── list-unacknowledged-stateful-notifications-with-bulletin-enabled.gql │ ├── ln-invoice-cancel.gql │ ├── ln-invoice-create-on-behalf-of-recipient.gql │ ├── ln-invoice-create.gql │ ├── ln-invoice-fee-probe.gql │ ├── ln-invoice-payment-send.gql │ ├── ln-invoice-payment-status-by-hash-sub.gql │ ├── ln-invoice-payment-status-by-hash.gql │ ├── ln-invoice-payment-status-by-payment-request-sub.gql │ ├── ln-invoice-payment-status-by-payment-request.gql │ ├── ln-no-amount-invoice-create-on-behalf-of-recipient.gql │ ├── ln-no-amount-invoice-create.gql │ ├── ln-no-amount-invoice-fee-probe.gql │ ├── ln-no-amount-invoice-payment-send.gql │ ├── ln-no-amount-usd-invoice-fee-probe.gql │ ├── ln-no-amount-usd-invoice-payment-send.gql │ ├── ln-usd-invoice-btc-denominated-create-on-behalf-of-recipient.gql │ ├── ln-usd-invoice-create-on-behalf-of-recipient.gql │ ├── ln-usd-invoice-create.gql │ ├── ln-usd-invoice-fee-probe.gql │ ├── lnurl-payment-send.gql │ ├── logout.gql │ ├── merchant-map-suggest.gql │ ├── my-updates-sub.gql │ ├── on-chain-address-create.gql │ ├── on-chain-address-current.gql │ ├── on-chain-payment-send-all.gql │ ├── on-chain-payment-send.gql │ ├── on-chain-tx-fee.gql │ ├── on-chain-usd-payment-send-as-btc-denominated.gql │ ├── on-chain-usd-payment-send.gql │ ├── on-chain-usd-tx-fee-as-btc-denominated.gql │ ├── on-chain-usd-tx-fee.gql │ ├── pending-incoming-transactions-by-address.gql │ ├── pending-incoming-transactions.gql │ ├── price-sub.gql │ ├── quiz-claim.gql │ ├── quiz-question.gql │ ├── quiz.gql │ ├── real-time-price-sub.gql │ ├── real-time-price.gql │ ├── revoke-api-key.gql │ ├── support-chat-message-add.gql │ ├── support-chat-reset.gql │ ├── support-chat.gql │ ├── transaction-for-wallet-by-id.gql │ ├── transactions-by-address.gql │ ├── transactions-by-wallet.gql │ ├── transactions-for-wallet-by-payment-hash.gql │ ├── transactions-for-wallet-by-payment-request.gql │ ├── transactions.gql │ ├── unacknowledged-stateful-notifications-without-bulletin-enabled-count.gql │ ├── update-display-currency.gql │ ├── user-details.gql │ ├── user-email-delete.gql │ ├── user-email-registration-initiate.gql │ ├── user-email-registration-validate.gql │ ├── user-login-upgrade.gql │ ├── user-login.gql │ ├── user-notification-settings.gql │ ├── user-phone-delete.gql │ ├── user-phone-registration-initiate.gql │ ├── user-phone-registration-validate.gql │ ├── user-totp-delete.gql │ ├── user-totp-registration-initiate.gql │ ├── user-totp-registration-validate.gql │ ├── user-update-language.gql │ ├── user-update-username.gql │ ├── username-available.gql │ └── wallets-for-account.gql └── helpers │ ├── _common.bash │ ├── admin.bash │ ├── bankowner.bash │ ├── callback.bash │ ├── callback │ ├── BUCK │ ├── index.ts │ ├── package.json │ ├── pnpm-workspace.yaml │ └── prettier.config.js │ ├── cli.bash │ ├── intraledger.bash │ ├── ledger.bash │ ├── ln.bash │ ├── onchain.bash │ ├── subscriber.bash │ ├── subscriber │ ├── BUCK │ ├── package.json │ ├── pnpm-workspace.yaml │ └── src │ │ └── gql-subscribe.ts │ ├── telegram-passport │ └── index.js │ ├── telegram.bash │ ├── totp │ ├── BUCK │ ├── package.json │ ├── pnpm-workspace.yaml │ └── src │ │ └── totp-generate.ts │ ├── trigger.bash │ ├── user.bash │ └── wallet.bash ├── ci ├── apps │ ├── app-template.lib.yml │ ├── image │ │ └── Dockerfile │ ├── pipeline-fragments.lib.yml │ ├── pipeline.yml │ ├── repipe │ ├── tasks │ │ ├── buck-task.sh │ │ ├── bump-image-digest.sh │ │ ├── open-charts-pr.sh │ │ ├── prepare-docker-build.sh │ │ └── run-on-nix-host.sh │ └── values.yml ├── config │ └── vendor │ │ └── git-cliff.toml ├── core │ ├── pipeline.yml │ ├── proto-sync-template.lib.yml │ ├── repipe │ ├── tasks │ │ ├── buck-task.sh │ │ ├── bump-core-bundle-images.sh │ │ ├── bump-image-digest.sh │ │ ├── open-bump-proto-pr.sh │ │ ├── open-charts-pr.sh │ │ ├── open-core-bundle-charts-pr.sh │ │ ├── prep-quickstart.sh │ │ ├── prepare-docker-build.sh │ │ ├── run-on-nix-host.sh │ │ └── sync-proto.sh │ ├── template.lib.yml │ └── values.yml ├── tasks │ ├── check-mobile-schema-compatibility.sh │ └── vendor │ │ └── prep-release-src.sh ├── vendir.lock.yml ├── vendir.yml └── vendor │ ├── config │ └── git-cliff.toml │ ├── pipeline-fragments.lib.yml │ └── tasks │ ├── chart-open-charts-pr.sh │ ├── chart-test-integration.sh │ ├── docker-bump-image-digest.sh │ ├── docker-prep-docker-build-env.sh │ ├── helpers.sh │ ├── nodejs-audit.sh │ ├── nodejs-cache-yarn-deps.sh │ ├── nodejs-check-code.sh │ ├── prep-release-src.sh │ └── test-on-docker-host.sh ├── core ├── api-cron │ ├── BUCK │ └── Dockerfile ├── api-exporter │ ├── BUCK │ └── Dockerfile ├── api-keys │ ├── .env │ ├── .sqlx │ │ ├── query-1a67c8ef64431678f3e1c3cf09b69dce71929ff3e81baf2ba1bed52b6455f8c8.json │ │ ├── query-3c30f2b5fe51722007efd915df973cd185a618903f53df32e5f9381420a4ef45.json │ │ ├── query-741722928f478e3815cf8316f8a21e5e615ad469ceb49443ca6184b28fa8d6be.json │ │ ├── query-750886aae5b96df76c66a4eec3f074c52bc56b12058bd3000c5b850579049b21.json │ │ ├── query-b52c808ef2afc69dcd45ddd6889b5a7ab0b025f6103ce6f0aa95fb12d950d005.json │ │ └── query-d680edf107c2bffe220f880b915bacf55a9418a2ca8bb58d08a4d60062651e38.json │ ├── BUCK │ ├── Cargo.toml │ ├── Dockerfile │ ├── api-keys.yml │ ├── migrations │ │ ├── 20231103084227_api_keys_setup.sql │ │ ├── 20231115113501_add-read-only-to-identity-api-keys.sql │ │ ├── 20231205080519_optional_expires_at.sql │ │ ├── 20231215145636_add_scopes_column.sql │ │ └── 20240112183422_add_hashed_key_to_identity_api_keys.sql │ ├── src │ │ ├── app │ │ │ ├── config.rs │ │ │ ├── error.rs │ │ │ └── mod.rs │ │ ├── bin │ │ │ └── write_sdl.rs │ │ ├── cli │ │ │ ├── config.rs │ │ │ ├── db.rs │ │ │ └── mod.rs │ │ ├── graphql │ │ │ ├── convert.rs │ │ │ ├── mod.rs │ │ │ ├── schema.rs │ │ │ └── server │ │ │ │ └── mod.rs │ │ ├── identity │ │ │ ├── error.rs │ │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── scope.rs │ │ └── server │ │ │ ├── config.rs │ │ │ ├── jwks │ │ │ ├── error.rs │ │ │ └── mod.rs │ │ │ └── mod.rs │ └── subgraph │ │ └── schema.graphql ├── api-trigger │ ├── BUCK │ └── Dockerfile ├── api-ws-server │ ├── BUCK │ └── Dockerfile ├── api │ ├── .envrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── BUCK │ ├── Dockerfile │ ├── Dockerfile-migrate │ ├── eslint.config.js │ ├── galoy.yaml │ ├── junit.xml │ ├── package.json │ ├── prettier.config.js │ ├── public │ │ └── logo.png │ ├── spectaql │ │ ├── TUTORIAL.md │ │ └── spectaql-config-template.yml │ ├── src │ │ ├── app │ │ │ ├── accounts │ │ │ │ ├── account-limit.ts │ │ │ │ ├── active-accounts.ts │ │ │ │ ├── add-new-contact.ts │ │ │ │ ├── create-account.ts │ │ │ │ ├── disable-notification-category.ts │ │ │ │ ├── disable-notification-channel.ts │ │ │ │ ├── enable-notification-category.ts │ │ │ │ ├── enable-notification-channel.ts │ │ │ │ ├── get-account-transactions-for-contact.ts │ │ │ │ ├── get-contact-by-username.ts │ │ │ │ ├── get-csv-for-account.ts │ │ │ │ ├── get-default-wallet-for-username-phone.ts │ │ │ │ ├── get-invoices-for-account.ts │ │ │ │ ├── get-notification-settings-for-account.ts │ │ │ │ ├── get-pending-incoming-on-chain-transactions-for-account.ts │ │ │ │ ├── get-transactions-for-account.ts │ │ │ │ ├── get-wallet-from-account.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mark-account-for-deletion.ts │ │ │ │ ├── set-username.ts │ │ │ │ ├── update-account-ip.ts │ │ │ │ ├── update-account-level.ts │ │ │ │ ├── update-account-status.ts │ │ │ │ ├── update-account-withdraw-fee.ts │ │ │ │ ├── update-contact-alias.ts │ │ │ │ ├── update-default-walletid.ts │ │ │ │ ├── update-display-currency.ts │ │ │ │ ├── upgrade-device-account.ts │ │ │ │ └── username-available.ts │ │ │ ├── admin │ │ │ │ ├── backup.ts │ │ │ │ ├── filtered-user-count.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── trigger-marketing-notification.ts │ │ │ │ └── update-user-phone.ts │ │ │ ├── authentication │ │ │ │ ├── activate-invited-account.ts │ │ │ │ ├── authorize-telegram-passport-nonce.ts │ │ │ │ ├── create-kratos-identity-by-phone.ts │ │ │ │ ├── email.ts │ │ │ │ ├── extend-sessions.ts │ │ │ │ ├── get-phone-metadata.ts │ │ │ │ ├── get-supported-countries.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── login.ts │ │ │ │ ├── logout.ts │ │ │ │ ├── phone.ts │ │ │ │ ├── ratelimits.ts │ │ │ │ ├── request-code.ts │ │ │ │ ├── request-telegram-passport-nonce.ts │ │ │ │ └── totp.ts │ │ │ ├── bootstrap │ │ │ │ └── index.ts │ │ │ ├── callback │ │ │ │ └── index.ts │ │ │ ├── captcha │ │ │ │ └── index.ts │ │ │ ├── comm │ │ │ │ ├── index.ts │ │ │ │ └── submit-feedback.ts │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ ├── index.types.d.ts │ │ │ ├── lightning │ │ │ │ ├── delete-ln-payments.ts │ │ │ │ ├── get-balances.ts │ │ │ │ ├── get-held-invoices.ts │ │ │ │ ├── get-payment-request.ts │ │ │ │ ├── get-pending-htlc.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list-nodes-pubkeys.ts │ │ │ │ ├── lookup-invoice-by-hash.ts │ │ │ │ ├── lookup-payment-by-hash.ts │ │ │ │ ├── payment-status-checker.ts │ │ │ │ └── update-ln-payments.ts │ │ │ ├── merchants │ │ │ │ ├── approve-merchant-map.ts │ │ │ │ ├── delete-merchant-map.ts │ │ │ │ ├── index.ts │ │ │ │ └── suggest-merchant-map.ts │ │ │ ├── on-chain │ │ │ │ ├── index.ts │ │ │ │ ├── rebalance-to-cold-wallet.ts │ │ │ │ └── record-hot-to-cold-transfer.ts │ │ │ ├── partial-result.ts │ │ │ ├── payments │ │ │ │ ├── get-protocol-fee.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── ln-send-result.ts │ │ │ │ ├── reimburse-failed-usd.ts │ │ │ │ ├── reimburse-fee.ts │ │ │ │ ├── send-intraledger.ts │ │ │ │ ├── send-lightning.ts │ │ │ │ ├── send-lnurl.ts │ │ │ │ ├── send-on-chain.ts │ │ │ │ ├── translations.ts │ │ │ │ └── update-pending-payments.ts │ │ │ ├── prices │ │ │ │ ├── estimate-wallets-amounts.ts │ │ │ │ ├── get-currency.ts │ │ │ │ ├── get-current-price.ts │ │ │ │ ├── get-price-history.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── list-currencies.ts │ │ │ │ └── mid-price.ts │ │ │ ├── quiz │ │ │ │ ├── claim.ts │ │ │ │ ├── index.ts │ │ │ │ └── list.ts │ │ │ ├── support │ │ │ │ ├── chat.ts │ │ │ │ └── index.ts │ │ │ ├── transactions │ │ │ │ ├── get-invoice-preimage-by-hash.ts │ │ │ │ ├── get-transactions-metadata-by-ids.ts │ │ │ │ └── index.ts │ │ │ ├── users │ │ │ │ ├── add-device-token.ts │ │ │ │ ├── get-push-device-tokens.ts │ │ │ │ ├── get-user-language.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── remove-device-tokens.ts │ │ │ │ └── update-language.ts │ │ │ └── wallets │ │ │ │ ├── add-invoice-for-wallet.ts │ │ │ │ ├── add-pending-on-chain-transaction.ts │ │ │ │ ├── add-settled-on-chain-transaction.ts │ │ │ │ ├── cancel-invoice-for-wallet.ts │ │ │ │ ├── create-on-chain-address.ts │ │ │ │ ├── decline-single-pending-invoice.ts │ │ │ │ ├── get-balance-for-wallet.ts │ │ │ │ ├── get-invoice-for-wallet-by-hash.ts │ │ │ │ ├── get-invoices-for-wallets.ts │ │ │ │ ├── get-last-on-chain-address.ts │ │ │ │ ├── get-on-chain-fee.ts │ │ │ │ ├── get-pending-incoming-on-chain-balance-for-wallet.ts │ │ │ │ ├── get-pending-incoming-on-chain-transactions-by-addresses.ts │ │ │ │ ├── get-pending-incoming-on-chain-transactions-for-wallets.ts │ │ │ │ ├── get-transaction-by-id.ts │ │ │ │ ├── get-transaction-by-journal-id.ts │ │ │ │ ├── get-transactions-by-addresses.ts │ │ │ │ ├── get-transactions-by-hash.ts │ │ │ │ ├── get-transactions-by-payment-request.ts │ │ │ │ ├── get-transactions-for-wallet.ts │ │ │ │ ├── handle-held-invoices.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── process-pending-invoice-result.ts │ │ │ │ ├── register-broadcasted-payout-txn.ts │ │ │ │ ├── remove-pending-on-chain-transaction.ts │ │ │ │ ├── settle-payout-txn.ts │ │ │ │ ├── update-legacy-on-chain-receipt.ts │ │ │ │ ├── update-single-pending-invoice.ts │ │ │ │ └── validate.ts │ │ ├── config │ │ │ ├── env.ts │ │ │ ├── error.ts │ │ │ ├── index.ts │ │ │ ├── index.types.d.ts │ │ │ ├── schema.ts │ │ │ ├── schema.types.d.ts │ │ │ ├── types.d.ts │ │ │ └── yaml.ts │ │ ├── debug │ │ │ ├── add-payment-request-all-wallet-invoice.ts │ │ │ ├── clean-kratos-identities.ts │ │ │ ├── clean-pending-payments-for-dead-node.ts │ │ │ ├── clean-txs-without-wallet.ts │ │ │ ├── delete-failed-payment.ts │ │ │ ├── fee-update-operations.json │ │ │ ├── get-wallet-balance.ts │ │ │ ├── migrate-ln-payments-listpayments.ts │ │ │ ├── migrate-ln-payments-trackpaymentsv2.ts │ │ │ ├── mongodb-query.txt │ │ │ ├── populate-journal-transactions.ts │ │ │ ├── print-sections-for-quizzes.ts │ │ │ ├── reconcile-bankowner.ts │ │ │ ├── reimburse.ts │ │ │ ├── reimbursements.json │ │ │ ├── reset-totp.ts │ │ │ ├── settle-pending-onchain-payments.ts │ │ │ ├── text-sms.ts │ │ │ ├── update-on-chain-receipt.ts │ │ │ ├── update-withdraw-fee-all-accounts.ts │ │ │ ├── update-withdraw-fee.ts │ │ │ ├── void-onchain-payment.ts │ │ │ └── void-payment.ts │ │ ├── domain │ │ │ ├── accounts-ips │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── ip-metadata-authorizer.ts │ │ │ ├── accounts │ │ │ │ ├── account-validator.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── limits-checker.ts │ │ │ │ ├── limits-volume.ts │ │ │ │ ├── primitives.ts │ │ │ │ └── test-accounts-checker.ts │ │ │ ├── authentication │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── authorization │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── bitcoin │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── lightning │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index.types.d.ts │ │ │ │ │ ├── invoice-expiration.ts │ │ │ │ │ ├── invoices.d.ts │ │ │ │ │ ├── ln-invoice.ts │ │ │ │ │ └── payments │ │ │ │ │ │ └── index.types.d.ts │ │ │ │ ├── lnurl │ │ │ │ │ ├── errors.ts │ │ │ │ │ └── index.types.d.ts │ │ │ │ └── onchain │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── incoming-tx-handler.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index.types.d.ts │ │ │ │ │ ├── rebalance-checker.ts │ │ │ │ │ ├── tx-decoder.ts │ │ │ │ │ └── tx-filter.ts │ │ │ ├── cache │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── callback │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── captcha │ │ │ │ └── errors.ts │ │ │ ├── comm │ │ │ │ └── errors.ts │ │ │ ├── dealer-price │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── errors.ts │ │ │ ├── errors.types.d.ts │ │ │ ├── fiat │ │ │ │ ├── display-amounts-converter.ts │ │ │ │ ├── display-currency.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── primitives.ts │ │ │ ├── index.types.d.ts │ │ │ ├── ipfetcher │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── kratos │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── ledger │ │ │ │ ├── activity-checker.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── fee-reimbursement.ts │ │ │ │ ├── imbalance-calculator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── ln-payment-state.ts │ │ │ │ └── validation.ts │ │ │ ├── locale │ │ │ │ └── index.ts │ │ │ ├── lock │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── merchants │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── notifications │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── oathkeeper │ │ │ │ └── errors.ts │ │ │ ├── payments │ │ │ │ ├── errors.ts │ │ │ │ ├── get-intraledger-hash.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── ln-fees.ts │ │ │ │ ├── onchain-payment-flow-builder.ts │ │ │ │ ├── payment-flow-builder.ts │ │ │ │ ├── payment-flow.ts │ │ │ │ ├── price-ratio.ts │ │ │ │ └── route-validator.ts │ │ │ ├── phone-provider │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── price │ │ │ │ ├── display-currency-from-country-code.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── primitives │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── pubsub │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── quiz │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── sections.ts │ │ │ ├── rate-limit │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── routes │ │ │ │ ├── index.types.d.ts │ │ │ │ └── key-factory.ts │ │ │ ├── shared │ │ │ │ ├── amount.ts │ │ │ │ ├── calculator.ts │ │ │ │ ├── error-parsers-unknown.ts │ │ │ │ ├── error-parsers.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── errors.types.d.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── primitives.ts │ │ │ │ ├── safe.ts │ │ │ │ └── validation.ts │ │ │ ├── sms-templates │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── welcome.ts │ │ │ ├── support │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── users │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── languages.ts │ │ │ │ ├── phone-metadata-authorizer.ts │ │ │ │ └── phone-metadata-validator.ts │ │ │ ├── wallet-invoices │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── wallet-invoice-builder.ts │ │ │ │ ├── wallet-invoice-checker.ts │ │ │ │ ├── wallet-invoice-receiver.ts │ │ │ │ └── wallet-invoice-status-checker.ts │ │ │ ├── wallet-on-chain │ │ │ │ ├── index.types.d.ts │ │ │ │ └── wallet-address-receiver.ts │ │ │ └── wallets │ │ │ │ ├── deposit-fee-calculator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── payment-input-validator.ts │ │ │ │ ├── primitives.ts │ │ │ │ ├── settlement-amounts.ts │ │ │ │ ├── tx-history.ts │ │ │ │ ├── tx-methods.ts │ │ │ │ ├── tx-status.ts │ │ │ │ ├── validation.ts │ │ │ │ └── withdrawal-fee-calculator.ts │ │ ├── graphql │ │ │ ├── admin │ │ │ │ ├── index.ts │ │ │ │ ├── mutations.ts │ │ │ │ ├── queries.ts │ │ │ │ ├── root │ │ │ │ │ ├── mutation │ │ │ │ │ │ ├── account-update-level.ts │ │ │ │ │ │ ├── account-update-status.ts │ │ │ │ │ │ ├── marketing-notification-trigger.ts │ │ │ │ │ │ ├── merchant-map-delete.ts │ │ │ │ │ │ ├── merchant-map-validate.ts │ │ │ │ │ │ └── user-update-phone.ts │ │ │ │ │ └── query │ │ │ │ │ │ ├── account-details-by-account-id.ts │ │ │ │ │ │ ├── account-details-by-email.ts │ │ │ │ │ │ ├── account-details-by-phone.ts │ │ │ │ │ │ ├── account-details-by-user-id.ts │ │ │ │ │ │ ├── account-details-by-username.ts │ │ │ │ │ │ ├── all-levels.ts │ │ │ │ │ │ ├── filtered-user-count.ts │ │ │ │ │ │ ├── lightning-invoice.ts │ │ │ │ │ │ ├── lightning-payment.ts │ │ │ │ │ │ ├── merchants-pending-approval-listing.ts │ │ │ │ │ │ ├── transaction-by-id.ts │ │ │ │ │ │ ├── transactions-by-hash.ts │ │ │ │ │ │ ├── transactions-by-payment-request.ts │ │ │ │ │ │ └── wallet.ts │ │ │ │ ├── schema.graphql │ │ │ │ └── types │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── object │ │ │ │ │ ├── account.ts │ │ │ │ │ ├── lightning-invoice.ts │ │ │ │ │ ├── lightning-payment.ts │ │ │ │ │ └── user.ts │ │ │ │ │ ├── payload │ │ │ │ │ ├── account-detail.ts │ │ │ │ │ └── wallet-details.ts │ │ │ │ │ └── scalar │ │ │ │ │ ├── account-status.ts │ │ │ │ │ ├── deep-link-action.ts │ │ │ │ │ ├── deep-link-screen.ts │ │ │ │ │ ├── external-url.ts │ │ │ │ │ └── notification-icon.ts │ │ │ ├── connections.ts │ │ │ ├── error-map.ts │ │ │ ├── error.ts │ │ │ ├── index.ts │ │ │ ├── index.types.d.ts │ │ │ ├── public │ │ │ │ ├── index.ts │ │ │ │ ├── mutations.ts │ │ │ │ ├── queries.ts │ │ │ │ ├── root │ │ │ │ │ ├── mutation │ │ │ │ │ │ ├── account-delete.ts │ │ │ │ │ │ ├── account-disable-notification-category-for-channel.ts │ │ │ │ │ │ ├── account-disable-notification-channel.ts │ │ │ │ │ │ ├── account-enable-notification-category-for-channel.ts │ │ │ │ │ │ ├── account-enable-notification-channel.ts │ │ │ │ │ │ ├── account-update-default-wallet-id.ts │ │ │ │ │ │ ├── account-update-display-currency.ts │ │ │ │ │ │ ├── callback-endpoint-add.ts │ │ │ │ │ │ ├── callback-endpoint-delete.ts │ │ │ │ │ │ ├── captcha-create-challenge.ts │ │ │ │ │ │ ├── captcha-request-auth-code.ts │ │ │ │ │ │ ├── device-notification-token-create.ts │ │ │ │ │ │ ├── feedback-submit.ts │ │ │ │ │ │ ├── index.types.d.ts │ │ │ │ │ │ ├── intraledger-payment-send.ts │ │ │ │ │ │ ├── intraledger-usd-payment-send.ts │ │ │ │ │ │ ├── ln-address-payment-send.ts │ │ │ │ │ │ ├── ln-invoice-cancel.ts │ │ │ │ │ │ ├── ln-invoice-create-on-behalf-of-recipient.ts │ │ │ │ │ │ ├── ln-invoice-create.ts │ │ │ │ │ │ ├── ln-invoice-fee-probe.ts │ │ │ │ │ │ ├── ln-invoice-payment-send.ts │ │ │ │ │ │ ├── ln-noamount-invoice-create-on-behalf-of-recipient.ts │ │ │ │ │ │ ├── ln-noamount-invoice-create.ts │ │ │ │ │ │ ├── ln-noamount-invoice-fee-probe.ts │ │ │ │ │ │ ├── ln-noamount-invoice-payment-send.ts │ │ │ │ │ │ ├── ln-noamount-usd-invoice-fee-probe.ts │ │ │ │ │ │ ├── ln-noamount-usd-invoice-payment-send.ts │ │ │ │ │ │ ├── ln-usd-invoice-btc-denominated-create-on-behalf-of-recipient.ts │ │ │ │ │ │ ├── ln-usd-invoice-create-on-behalf-of-recipient.ts │ │ │ │ │ │ ├── ln-usd-invoice-create.ts │ │ │ │ │ │ ├── ln-usd-invoice-fee-probe.ts │ │ │ │ │ │ ├── lnurl-payment-send.ts │ │ │ │ │ │ ├── merchant-map-suggest.ts │ │ │ │ │ │ ├── on-chain-address-create.ts │ │ │ │ │ │ ├── on-chain-address-current.ts │ │ │ │ │ │ ├── onchain-payment-send-all.ts │ │ │ │ │ │ ├── onchain-payment-send.ts │ │ │ │ │ │ ├── onchain-usd-payment-send-as-sats.ts │ │ │ │ │ │ ├── onchain-usd-payment-send.ts │ │ │ │ │ │ ├── quiz-claim.ts │ │ │ │ │ │ ├── support-chat-message-add.ts │ │ │ │ │ │ ├── support-chat-reset.ts │ │ │ │ │ │ ├── user-contact-update-alias.ts │ │ │ │ │ │ ├── user-email-delete.ts │ │ │ │ │ │ ├── user-email-registration-initiate.ts │ │ │ │ │ │ ├── user-email-registration-validate.ts │ │ │ │ │ │ ├── user-login-upgrade.ts │ │ │ │ │ │ ├── user-login.ts │ │ │ │ │ │ ├── user-logout.ts │ │ │ │ │ │ ├── user-phone-delete.ts │ │ │ │ │ │ ├── user-phone-registration-initiate.ts │ │ │ │ │ │ ├── user-phone-registration-validate.ts │ │ │ │ │ │ ├── user-totp-delete.ts │ │ │ │ │ │ ├── user-totp-registration-initiate.ts │ │ │ │ │ │ ├── user-totp-registration-validate.ts │ │ │ │ │ │ ├── user-update-language.ts │ │ │ │ │ │ └── user-update-username.ts │ │ │ │ │ ├── query │ │ │ │ │ │ ├── account-default-wallet-id.ts │ │ │ │ │ │ ├── account-default-wallet.ts │ │ │ │ │ │ ├── authorization.ts │ │ │ │ │ │ ├── btc-price-list.ts │ │ │ │ │ │ ├── business-map-markers.ts │ │ │ │ │ │ ├── currency-conversion-estimation.ts │ │ │ │ │ │ ├── currency-list.ts │ │ │ │ │ │ ├── globals.ts │ │ │ │ │ │ ├── ln-invoice-payment-status-by-hash.ts │ │ │ │ │ │ ├── ln-invoice-payment-status-by-payment-request.ts │ │ │ │ │ │ ├── ln-invoice-payment-status.ts │ │ │ │ │ │ ├── me.ts │ │ │ │ │ │ ├── mobile-versions.ts │ │ │ │ │ │ ├── on-chain-tx-fee-query.ts │ │ │ │ │ │ ├── on-chain-usd-tx-fee-query-as-sats.ts │ │ │ │ │ │ ├── on-chain-usd-tx-fee-query.ts │ │ │ │ │ │ ├── realtime-price.ts │ │ │ │ │ │ └── username-available.ts │ │ │ │ │ └── subscription │ │ │ │ │ │ ├── ln-invoice-payment-status-by-hash.ts │ │ │ │ │ │ ├── ln-invoice-payment-status-by-payment-request.ts │ │ │ │ │ │ ├── ln-invoice-payment-status.ts │ │ │ │ │ │ ├── my-updates.ts │ │ │ │ │ │ ├── price.ts │ │ │ │ │ │ └── realtime-price.ts │ │ │ │ ├── schema.graphql │ │ │ │ ├── subscriptions.ts │ │ │ │ └── types │ │ │ │ │ ├── abstract │ │ │ │ │ ├── account-limit.ts │ │ │ │ │ └── account.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── object │ │ │ │ │ ├── account-contact.ts │ │ │ │ │ ├── account-limits.ts │ │ │ │ │ ├── authorization.ts │ │ │ │ │ ├── build-information.ts │ │ │ │ │ ├── business-account.ts │ │ │ │ │ ├── callback-endpoint.ts │ │ │ │ │ ├── consumer-account.ts │ │ │ │ │ ├── country.ts │ │ │ │ │ ├── currency-conversion-estimation.ts │ │ │ │ │ ├── currency.ts │ │ │ │ │ ├── fees-information.ts │ │ │ │ │ ├── global-settings.ts │ │ │ │ │ ├── globals.ts │ │ │ │ │ ├── limits.ts │ │ │ │ │ ├── ln-invoice-payment-status-by-hash-input.ts │ │ │ │ │ ├── ln-invoice-payment-status-by-payment-request-input.ts │ │ │ │ │ ├── ln-invoice-payment-status-input.ts │ │ │ │ │ ├── ln-invoice-payment-status.ts │ │ │ │ │ ├── map-info.ts │ │ │ │ │ ├── map-marker.ts │ │ │ │ │ ├── mobile-versions.ts │ │ │ │ │ ├── notification-channel-settings.ts │ │ │ │ │ ├── notification-settings.ts │ │ │ │ │ ├── onchain-tx-fee.ts │ │ │ │ │ ├── onchain-usd-tx-fee.ts │ │ │ │ │ ├── one-day-account-limit.ts │ │ │ │ │ ├── price-of-one-sat-in-minor-unit.ts │ │ │ │ │ ├── price-of-one-usd-cent-in-minor-unit.ts │ │ │ │ │ ├── price-point.ts │ │ │ │ │ ├── price.ts │ │ │ │ │ ├── public-wallet.ts │ │ │ │ │ ├── quiz.ts │ │ │ │ │ ├── realtime-price.ts │ │ │ │ │ ├── support-message.ts │ │ │ │ │ └── user.ts │ │ │ │ │ ├── payload │ │ │ │ │ ├── account-delete.ts │ │ │ │ │ ├── account-update-default-wallet-id.ts │ │ │ │ │ ├── account-update-display-currency.ts │ │ │ │ │ ├── account-update-notification-settings.ts │ │ │ │ │ ├── callback-endpoint-add.ts │ │ │ │ │ ├── captcha-create-challenge.ts │ │ │ │ │ ├── cent-amount.ts │ │ │ │ │ ├── ln-invoice-payment-status.ts │ │ │ │ │ ├── ln-invoice.ts │ │ │ │ │ ├── ln-noamount-invoice.ts │ │ │ │ │ ├── on-chain-address.ts │ │ │ │ │ ├── payment-send.ts │ │ │ │ │ ├── price.ts │ │ │ │ │ ├── quiz-claim.ts │ │ │ │ │ ├── quiz-completed.ts │ │ │ │ │ ├── realtime-price.ts │ │ │ │ │ ├── sat-amount.ts │ │ │ │ │ ├── upgrade-payload.ts │ │ │ │ │ ├── user-contact-update-alias.ts │ │ │ │ │ ├── user-email-delete.ts │ │ │ │ │ ├── user-email-registration-initiate.ts │ │ │ │ │ ├── user-email-registration-validate.ts │ │ │ │ │ ├── user-phone-delete.ts │ │ │ │ │ ├── user-phone-registration-validate.ts │ │ │ │ │ ├── user-totp-delete.ts │ │ │ │ │ ├── user-totp-registration-initiate.ts │ │ │ │ │ ├── user-totp-registration-validate.ts │ │ │ │ │ ├── user-update-language.ts │ │ │ │ │ └── user-update-username.ts │ │ │ │ │ └── scalar │ │ │ │ │ ├── cent-amount.ts │ │ │ │ │ ├── contact-alias.ts │ │ │ │ │ ├── country-code.ts │ │ │ │ │ ├── email-verify-id.ts │ │ │ │ │ ├── endpoint-id.ts │ │ │ │ │ ├── endpoint-url.ts │ │ │ │ │ ├── exchange-currency-unit.ts │ │ │ │ │ ├── fee-reimbursement-hash.ts │ │ │ │ │ ├── feedback.ts │ │ │ │ │ ├── hex32bytes.ts │ │ │ │ │ ├── ln-noamount-invoice-payment-request.ts │ │ │ │ │ ├── minutes.ts │ │ │ │ │ ├── network.ts │ │ │ │ │ ├── payment-send-result.ts │ │ │ │ │ ├── payout-speed.ts │ │ │ │ │ ├── price-graph-range.ts │ │ │ │ │ ├── seconds.ts │ │ │ │ │ ├── support-role.ts │ │ │ │ │ ├── totp-code.ts │ │ │ │ │ ├── totp-secret.ts │ │ │ │ │ ├── totp-verify-id.ts │ │ │ │ │ └── tx-notification-type.ts │ │ │ └── shared │ │ │ │ ├── root │ │ │ │ └── mutation │ │ │ │ │ └── index.ts │ │ │ │ └── types │ │ │ │ ├── abstract │ │ │ │ ├── error.ts │ │ │ │ ├── initiation-via.ts │ │ │ │ ├── invoice.ts │ │ │ │ ├── price.ts │ │ │ │ ├── settlement-via.ts │ │ │ │ └── wallet.ts │ │ │ │ ├── object │ │ │ │ ├── btc-wallet.ts │ │ │ │ ├── coordinates.ts │ │ │ │ ├── email.ts │ │ │ │ ├── graphql-application-error.ts │ │ │ │ ├── ln-invoice.ts │ │ │ │ ├── ln-noamount-invoice.ts │ │ │ │ ├── merchant.ts │ │ │ │ ├── price-of-one-settlement-minor-unit-in-display-minor-unit.ts │ │ │ │ ├── transaction.ts │ │ │ │ └── usd-wallet.ts │ │ │ │ ├── payload │ │ │ │ ├── auth-token.ts │ │ │ │ ├── merchant.ts │ │ │ │ └── success-payload.ts │ │ │ │ └── scalar │ │ │ │ ├── account-id.ts │ │ │ │ ├── account-level.ts │ │ │ │ ├── auth-token.ts │ │ │ │ ├── display-currency.ts │ │ │ │ ├── email-address.ts │ │ │ │ ├── invoice-payment-status.ts │ │ │ │ ├── language.ts │ │ │ │ ├── ln-payment-preimage.ts │ │ │ │ ├── ln-payment-request.ts │ │ │ │ ├── ln-payment-secret.ts │ │ │ │ ├── ln-payment-status.ts │ │ │ │ ├── ln-pubkey.ts │ │ │ │ ├── memo.ts │ │ │ │ ├── notification-category.ts │ │ │ │ ├── notification-channel.ts │ │ │ │ ├── on-chain-address.ts │ │ │ │ ├── onchain-tx-hash.ts │ │ │ │ ├── one-time-auth-code.ts │ │ │ │ ├── payment-hash.ts │ │ │ │ ├── phone-code-channel-type.ts │ │ │ │ ├── phone.ts │ │ │ │ ├── safe-int.ts │ │ │ │ ├── sat-amount.ts │ │ │ │ ├── scope.ts │ │ │ │ ├── signed-amount.ts │ │ │ │ ├── signed-display-amount.ts │ │ │ │ ├── timestamp.ts │ │ │ │ ├── tx-direction.ts │ │ │ │ ├── tx-external-id.ts │ │ │ │ ├── tx-status.ts │ │ │ │ ├── username.ts │ │ │ │ ├── wallet-currency.ts │ │ │ │ └── wallet-id.ts │ │ ├── migrations │ │ │ ├── 20210922002129-add-wallet-public-id.ts │ │ │ ├── 20211202002129-coordinate-to-coordinates.ts │ │ │ ├── 20211209211641-use-walletid-for-ledger.ts │ │ │ ├── 20220111173335-separate-wallet-collection.ts │ │ │ ├── 20220118183759-remove-wallet-id-index.ts │ │ │ ├── 20220122121713-add-default-currency-walletinvoices.ts │ │ │ ├── 20220203152515-bootstrap_accounts.ts │ │ │ ├── 20220310000000-add-kratos-user-id.ts │ │ │ ├── 20220406124601-fix-lnpayments-millisats.ts │ │ │ ├── 20220422000000-add-status-history.ts │ │ │ ├── 20220427130214-add-sats-amount-prop-to-payments.ts │ │ │ ├── 20220601191441-fix-reimburse-amounts.ts │ │ │ ├── 20220922030802-update-contact-enabled.ts │ │ │ ├── 20221010162913-add-self-trade-type.ts │ │ │ ├── 2022110622030802-users-to-account.ts │ │ │ ├── 2022113010370802-users-migration-1.ts │ │ │ ├── 2022113010370803-users-migration-2.ts │ │ │ ├── 2022121620560802-remove-phone-code.ts │ │ │ ├── 20230106142545-fix-onchain-send-usd.ts │ │ │ ├── 20230116132109-add-sats-amounts-onchain-payments.ts │ │ │ ├── 20230116162612-add-sats-amounts-to-receipts.ts │ │ │ ├── 20230319091251-add-sats-amounts-to-intraledger.ts │ │ │ ├── 20230603185541-ledger-request-id.ts │ │ │ ├── 20230621225319-remove-deposit-fee-ratio.ts │ │ │ ├── 20230630133505-moving-ip-collection.ts │ │ │ ├── 20230709103710-deleted-phone-to-array.ts │ │ │ ├── 20230807205306-add-uuid-to-accounts.ts │ │ │ ├── 20231009205307-migrate-accounts-to-uuid.ts │ │ │ ├── 20231030191242-fix-earn-typo.ts │ │ │ ├── 20231115193913-add-processing-completed-to-wallet-invoice.ts │ │ │ ├── 20231128111840-re-init-withdraw-fee.ts │ │ │ ├── 20231220170640-quiz-new-collection-1.ts │ │ │ ├── 20231220190840-quiz-new-collection-2.ts │ │ │ ├── 20240130210000-location-migration-1.ts │ │ │ ├── 20240201124500-location-migration-2.ts │ │ │ ├── 20240412030143-add-external-id-to-invoices.ts │ │ │ ├── 20240419021017-add-remove-medici-6-deprecated-indexes.ts │ │ │ ├── 20240424133833-add-account-id-to-invoices.ts │ │ │ └── migrate-mongo-config.js │ │ ├── servers │ │ │ ├── authentication │ │ │ │ ├── express.d.ts │ │ │ │ ├── index.ts │ │ │ │ └── telegram-passport │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── login.ts │ │ │ │ │ ├── request-params.ts │ │ │ │ │ └── webhook.ts │ │ │ ├── cron.ts │ │ │ ├── errors.ts │ │ │ ├── event-handlers │ │ │ │ └── bria.ts │ │ │ ├── exporter.ts │ │ │ ├── graphql-admin-api-server.ts │ │ │ ├── graphql-main-server.ts │ │ │ ├── graphql-public-api-server.ts │ │ │ ├── graphql-server.ts │ │ │ ├── index.files.d.ts │ │ │ ├── middlewares │ │ │ │ ├── healthz.ts │ │ │ │ ├── idempotency.ts │ │ │ │ ├── idempotency.types.d.ts │ │ │ │ ├── scope.ts │ │ │ │ ├── session.ts │ │ │ │ └── wallet-id.ts │ │ │ ├── trigger.ts │ │ │ ├── write-sdl.ts │ │ │ └── ws-server.ts │ │ ├── services │ │ │ ├── bria │ │ │ │ ├── errors.ts │ │ │ │ ├── event-handler.ts │ │ │ │ ├── event-repository.ts │ │ │ │ ├── grpc-client.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── proto │ │ │ │ │ ├── bria.proto │ │ │ │ │ ├── bria_grpc_pb.d.ts │ │ │ │ │ ├── bria_grpc_pb.js │ │ │ │ │ ├── bria_pb.d.ts │ │ │ │ │ ├── bria_pb.js │ │ │ │ │ └── buf.gen.yaml │ │ │ │ └── schema.ts │ │ │ ├── cache │ │ │ │ ├── index.ts │ │ │ │ ├── local-cache.ts │ │ │ │ └── redis-cache.ts │ │ │ ├── dealer-price │ │ │ │ ├── dealer-price.ts │ │ │ │ ├── index.ts │ │ │ │ └── proto │ │ │ │ │ ├── buf.gen.yaml │ │ │ │ │ ├── buf.yaml │ │ │ │ │ └── services │ │ │ │ │ └── price │ │ │ │ │ └── v1 │ │ │ │ │ ├── price_service.proto │ │ │ │ │ ├── price_service_grpc_pb.d.ts │ │ │ │ │ ├── price_service_grpc_pb.js │ │ │ │ │ ├── price_service_pb.d.ts │ │ │ │ │ └── price_service_pb.js │ │ │ ├── geetest.ts │ │ │ ├── geetest.types.d.ts │ │ │ ├── ipfetcher │ │ │ │ └── index.ts │ │ │ ├── kratos │ │ │ │ ├── auth-email-no-password.ts │ │ │ │ ├── auth-phone-no-password.ts │ │ │ │ ├── auth-username-password-deviceid.ts │ │ │ │ ├── cron.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── identity.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── private.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── tests-but-not-prod.ts │ │ │ │ └── totp.ts │ │ │ ├── ledger │ │ │ │ ├── README.md │ │ │ │ ├── admin-legacy.ts │ │ │ │ ├── admin.ts │ │ │ │ ├── books.ts │ │ │ │ ├── caching.ts │ │ │ │ ├── csv-wallet-export.ts │ │ │ │ ├── domain │ │ │ │ │ ├── accounts.ts │ │ │ │ │ ├── entry-builder.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── errors.types.d.ts │ │ │ │ │ ├── fee-only-entry-builder.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── index.types.d.ts │ │ │ │ ├── facade │ │ │ │ │ ├── get-transactions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index.types.d.ts │ │ │ │ │ ├── intraledger.ts │ │ │ │ │ ├── offchain-receive.ts │ │ │ │ │ ├── offchain-send.ts │ │ │ │ │ ├── onchain-receive.ts │ │ │ │ │ ├── onchain-reconcile.ts │ │ │ │ │ ├── onchain-send.ts │ │ │ │ │ ├── reconciliation.ts │ │ │ │ │ ├── static-account-ids.ts │ │ │ │ │ ├── tx-metadata.ts │ │ │ │ │ ├── update-state.ts │ │ │ │ │ ├── volume.ts │ │ │ │ │ └── wallet.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── paginated-ledger.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── schema.types.d.ts │ │ │ │ ├── send.ts │ │ │ │ ├── services │ │ │ │ │ ├── index.ts │ │ │ │ │ └── transactions-metadata.ts │ │ │ │ └── translate.ts │ │ │ ├── ln-service.d.ts │ │ │ ├── lnd │ │ │ │ ├── auth.ts │ │ │ │ ├── auth.types.d.ts │ │ │ │ ├── balanceofsatoshis.d.ts │ │ │ │ ├── config.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── health.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ ├── rebalancing.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── schema.types.d.ts │ │ │ │ └── utils.ts │ │ │ ├── lnurl-pay │ │ │ │ └── index.ts │ │ │ ├── lock │ │ │ │ └── index.ts │ │ │ ├── logger.ts │ │ │ ├── mongodb │ │ │ │ └── index.ts │ │ │ ├── mongoose │ │ │ │ ├── accounts-ips.ts │ │ │ │ ├── accounts.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ln-payments.ts │ │ │ │ ├── merchants.ts │ │ │ │ ├── payment-flow.ts │ │ │ │ ├── quiz.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── schema.types.d.ts │ │ │ │ ├── support-chat.ts │ │ │ │ ├── users.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── wallet-invoices.ts │ │ │ │ ├── wallet-on-chain-addresses.ts │ │ │ │ ├── wallet-onchain-pending-receive.ts │ │ │ │ └── wallets.ts │ │ │ ├── notifications │ │ │ │ ├── convert.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── grpc-client.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── proto │ │ │ │ │ ├── buf.gen.yaml │ │ │ │ │ ├── notifications.proto │ │ │ │ │ ├── notifications_grpc_pb.d.ts │ │ │ │ │ ├── notifications_grpc_pb.js │ │ │ │ │ ├── notifications_pb.d.ts │ │ │ │ │ └── notifications_pb.js │ │ │ ├── oathkeeper │ │ │ │ └── index.ts │ │ │ ├── openai │ │ │ │ ├── assistant.ts │ │ │ │ ├── embeddings.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mock.ts │ │ │ │ └── pinecone.ts │ │ │ ├── price │ │ │ │ ├── grpc.ts │ │ │ │ ├── index.ts │ │ │ │ ├── index.types.d.ts │ │ │ │ └── protos │ │ │ │ │ ├── health.proto │ │ │ │ │ ├── price.proto │ │ │ │ │ └── price_history.proto │ │ │ ├── pubsub.ts │ │ │ ├── rate-limit │ │ │ │ └── index.ts │ │ │ ├── redis │ │ │ │ ├── connection.ts │ │ │ │ ├── index.ts │ │ │ │ └── routes.ts │ │ │ ├── svix │ │ │ │ ├── errors.ts │ │ │ │ ├── index.ts │ │ │ │ └── index.types.d.ts │ │ │ ├── tracing.ts │ │ │ └── twilio-service.ts │ │ └── utils │ │ │ ├── grpc-stream-client │ │ │ ├── backoff.ts │ │ │ ├── index.ts │ │ │ ├── index.types.d.ts │ │ │ ├── stream-builder.ts │ │ │ └── stream.ts │ │ │ └── index.ts │ ├── test │ │ ├── helpers │ │ │ ├── bitcoin-core.ts │ │ │ ├── bitcoind.ts │ │ │ ├── generate-hash.ts │ │ │ ├── get-error.ts │ │ │ ├── index.ts │ │ │ ├── index.type.d.ts │ │ │ ├── kratos.ts │ │ │ ├── ledger.ts │ │ │ ├── lightning.ts │ │ │ ├── price.ts │ │ │ ├── random.ts │ │ │ ├── shared.ts │ │ │ ├── user.ts │ │ │ ├── wallet-invoices.ts │ │ │ └── wallet.ts │ │ ├── integration │ │ │ ├── app │ │ │ │ ├── accounts │ │ │ │ │ ├── create-account.spec.ts │ │ │ │ │ ├── get-transactions-for-accounts.spec.ts │ │ │ │ │ ├── set-username.spec.ts │ │ │ │ │ └── update-account-status.spec.ts │ │ │ │ ├── authentication │ │ │ │ │ └── extend.spec.ts │ │ │ │ ├── lightning │ │ │ │ │ ├── delete-ln-payments.spec.ts │ │ │ │ │ └── update-ln-payments.spec.ts │ │ │ │ ├── prices │ │ │ │ │ └── get-mid-price-ratio.spec.ts │ │ │ │ ├── quizzes │ │ │ │ │ └── claim-quiz.spec.ts │ │ │ │ ├── transactions │ │ │ │ │ └── get-invoice-preimage-by-hash.spec.ts │ │ │ │ ├── user │ │ │ │ │ └── update-language.spec.ts │ │ │ │ └── wallets │ │ │ │ │ ├── add-invoice-for-wallet.spec.ts │ │ │ │ │ ├── add-pending-on-chain-transaction.spec.ts │ │ │ │ │ ├── add-settled-on-chain-transaction.spec.ts │ │ │ │ │ ├── create-on-chain-address.spec.ts │ │ │ │ │ ├── get-last-on-chain-address.spec.ts │ │ │ │ │ ├── get-on-chain-fee.spec.ts │ │ │ │ │ ├── get-pending-incoming-on-chain-balance-for-wallets.spec.ts │ │ │ │ │ ├── handle-bria-event.spec.ts │ │ │ │ │ ├── send-intraledger.spec.ts │ │ │ │ │ ├── send-lightning.spec.ts │ │ │ │ │ ├── send-onchain.spec.ts │ │ │ │ │ ├── update-pending-invoices.spec.ts │ │ │ │ │ └── update-pending-payments.spec.ts │ │ │ ├── jest.config.js │ │ │ ├── jest.setup.js │ │ │ ├── scenarios │ │ │ │ └── hedge-arbitrage.spec.ts │ │ │ └── services │ │ │ │ ├── accounts-repository.spec.ts │ │ │ │ ├── assistant.spec.ts │ │ │ │ ├── auth-service.spec.ts │ │ │ │ ├── bria.spec.ts │ │ │ │ ├── cache-service.spec.ts │ │ │ │ ├── ledger-csv.spec.ts │ │ │ │ ├── ledger-facade.spec.ts │ │ │ │ ├── ledger-service.spec.ts │ │ │ │ ├── lnd-service.spec.ts │ │ │ │ ├── lnurl-pay.spec.ts │ │ │ │ ├── lock-service.spec.ts │ │ │ │ ├── merchant.spec.ts │ │ │ │ ├── notifications.spec.ts │ │ │ │ ├── onchain-service.spec.ts │ │ │ │ ├── quiz.spec.ts │ │ │ │ ├── rate-limit.spec.ts │ │ │ │ ├── stablesats.spec.ts │ │ │ │ ├── users-repository.spec.ts │ │ │ │ ├── wallet-invoices-repository.spec.ts │ │ │ │ ├── wallet-onchain-pending-receive.spec.ts │ │ │ │ └── wallets-repository.spec.ts │ │ ├── mocks │ │ │ └── get-current-price.ts │ │ ├── swc-config.json │ │ └── unit │ │ │ ├── app │ │ │ ├── auth │ │ │ │ └── auth-test-checker.ts │ │ │ ├── payments │ │ │ │ └── translations.spec.ts │ │ │ └── prices │ │ │ │ ├── get-current-price.spec.ts │ │ │ │ ├── get-price-history.spec.ts │ │ │ │ └── list-currencies.spec.ts │ │ │ ├── config.spec.ts │ │ │ ├── domain │ │ │ ├── accounts-ips │ │ │ │ └── index.spec.ts │ │ │ ├── accounts │ │ │ │ ├── account-validator.spec.ts │ │ │ │ ├── limits-checker.spec.ts │ │ │ │ ├── limits-volume.spec.ts │ │ │ │ └── new-account.ts │ │ │ ├── authentication │ │ │ │ └── index.spec.ts │ │ │ ├── authorization │ │ │ │ └── index.spec.ts │ │ │ ├── bitcoin │ │ │ │ ├── checked-to-sats.spec.ts │ │ │ │ ├── lightning │ │ │ │ │ ├── invoice-expiration.spec.ts │ │ │ │ │ └── ln-invoice.spec.ts │ │ │ │ └── onchain │ │ │ │ │ ├── checked-to-on-chain-address.spec.ts │ │ │ │ │ ├── incoming-tx-handler.spec.ts │ │ │ │ │ ├── rebalance-checker.spec.ts │ │ │ │ │ ├── tx-decoder.spec.ts │ │ │ │ │ └── tx-filter.spec.ts │ │ │ ├── errors.spec.ts │ │ │ ├── fiat │ │ │ │ ├── display-amounts-converter.spec.ts │ │ │ │ └── major-to-minor-unit.spec.ts │ │ │ ├── ledger │ │ │ │ ├── activity-checker.spec.ts │ │ │ │ ├── fee-reimbursement.spec.ts │ │ │ │ ├── imbalance-calculator.spec.ts │ │ │ │ └── index.spec.ts │ │ │ ├── notifications │ │ │ │ └── index.spec.ts │ │ │ ├── payments │ │ │ │ ├── index.spec.ts │ │ │ │ ├── ln-fees.spec.ts │ │ │ │ └── price-ratio.spec.ts │ │ │ ├── phone-provider │ │ │ │ └── checked-to-channel.spec.ts │ │ │ ├── price │ │ │ │ └── display-currency-from-country-code.spec.ts │ │ │ ├── primitives │ │ │ │ └── parse-pagination-args.spec.ts │ │ │ ├── quiz │ │ │ │ └── index.spec.ts │ │ │ ├── routes │ │ │ │ └── key-factory.spec.ts │ │ │ ├── shared │ │ │ │ ├── amount-calculator.spec.ts │ │ │ │ └── safe.spec.ts │ │ │ ├── users-ips │ │ │ │ ├── ip-metadata-authorizer.spec.ts │ │ │ │ └── parse-ips.spec.ts │ │ │ ├── users │ │ │ │ ├── checked-to-accountlevel.spec.ts │ │ │ │ ├── checked-to-email-address.spec.ts │ │ │ │ ├── checked-to-language.spec.ts │ │ │ │ ├── checked-to-phonenumber.spec.ts │ │ │ │ ├── checked-to-username.spec.ts │ │ │ │ ├── phone-metadata-authorizer.spec.ts │ │ │ │ └── phone-metadata-validator.spec.ts │ │ │ ├── wallet-invoices │ │ │ │ ├── wallet-invoice-builder.spec.ts │ │ │ │ ├── wallet-invoice-checker.spec.ts │ │ │ │ ├── wallet-invoice-receiver.spec.ts │ │ │ │ └── wallet-invoice-status-checker.spec.ts │ │ │ ├── wallet-on-chain-addresses │ │ │ │ └── wallet-address-receiver.spec.ts │ │ │ └── wallets │ │ │ │ ├── deposit-fee-calculator.spec.ts │ │ │ │ ├── payment-input-validator.spec.ts │ │ │ │ ├── settlement-amounts.spec.ts │ │ │ │ ├── tx-history.spec.ts │ │ │ │ └── withdrawal-fee-calculator.spec.ts │ │ │ ├── graphql │ │ │ └── index.spec.ts │ │ │ ├── jest.config.js │ │ │ ├── ledger │ │ │ ├── ledger.spec.ts │ │ │ └── ln-payment-state.spec.ts │ │ │ ├── payments │ │ │ ├── onchain-payment-flow-builder.spec.ts │ │ │ ├── payment-flow-builder.spec.ts │ │ │ └── payment-flow.spec.ts │ │ │ ├── services │ │ │ ├── ipfetcher │ │ │ │ └── fetch-ip-info.spec.ts │ │ │ ├── kratos │ │ │ │ └── identity.spec.ts │ │ │ ├── ledger │ │ │ │ └── domain │ │ │ │ │ ├── entry-builder.spec.ts │ │ │ │ │ ├── fee-only-entry-builder.spec.ts │ │ │ │ │ ├── tx-metadata.spec.ts │ │ │ │ │ └── volume-calculator.spec.ts │ │ │ ├── mongoose │ │ │ │ └── utils.spec.ts │ │ │ ├── notifications │ │ │ │ └── transactions.ts │ │ │ └── twilio │ │ │ │ └── is-disposable-phone-number.spec.ts │ │ │ └── utils │ │ │ ├── grpc-stream-client │ │ │ ├── backoff.spec.ts │ │ │ ├── stream-builder.spec.ts │ │ │ └── stream.spec.ts │ │ │ └── index.spec.ts │ ├── tsconfig-build.json │ └── tsconfig.json └── notifications │ ├── .env │ ├── .sqlx │ ├── query-06b75ba358f8d3f2450dc6f5481ca73685a3b2c1b428c2883a4592d2a66d23b4.json │ ├── query-1f1b7039f03d2b42a88d13ee0394aac08c81a41e828eaa94a29e277177822fc6.json │ ├── query-226ebb1c711fd0af3205d22b7896dc95cb6efc3d5ca8d1ee070422977c3d5687.json │ ├── query-2c4244e6f448e2e4d07c758ca53ee776b63e1bafd93f579334e0d7ed93f16383.json │ ├── query-47ede6d0750bde9e9f595f603ee7baf7ba337db2f1707805e8fa36f04ca0360e.json │ ├── query-529104c49014a0c003388fb84a45073a1b9178a3da720708b860c2c3a626bd8b.json │ ├── query-533ec09be1426e2330214ddb09a74e059574296dc8e7c5e6492e0d60c739935d.json │ ├── query-6f4559f529a6e2aa161d77246c54efcd54103ade3ef23cb60ca7ce719cb1ab36.json │ ├── query-80f1dfe0b2ddd4f5777aee2323523f66a10db11dce0ac7f9e4aef8f33a7017eb.json │ ├── query-a8774d41695001af8d3797a12c389911e0c76e4fc4aa40cc158009d5e28bb9a0.json │ ├── query-b7ca1af7c06bb123ceb0a808475c7a7eade1ed968fd8f9d80b5348f2fc457ade.json │ ├── query-baf183050fbbad59db8c7ee26f900b9e481bcf530c668e32b61ce8bf25a2a385.json │ ├── query-c2d579b9dd453eaafbbc2e39ea81d30a7e9e3c88d37f73829e19ef3edae293e0.json │ ├── query-d05bfed34ba510df8ab1913377c36cdba1db9f4be114ba666008ad2732d479b5.json │ ├── query-df17da5042a31ddd5afc19e1c0076c4c36bf718d6ef67093f71423afc3ebcf89.json │ └── query-feded3e0ea6259aa64903d058fcfbf55eb4845ee6752c89d9220e3844e4d16ff.json │ ├── BUCK │ ├── Cargo.toml │ ├── Dockerfile │ ├── build.rs │ ├── locales │ ├── ca.yml │ ├── de.yml │ ├── el.yml │ ├── en.yml │ ├── es.yml │ ├── hu.yml │ ├── ro.yml │ └── sw.yml │ ├── migrations │ ├── 20210316025847_setup.down.sql │ ├── 20210316025847_setup.up.sql │ ├── 20210921115907_clear.down.sql │ ├── 20210921115907_clear.up.sql │ ├── 20211013151757_fix_mq_latest_message.down.sql │ ├── 20211013151757_fix_mq_latest_message.up.sql │ ├── 20220208120856_fix_concurrent_poll.down.sql │ ├── 20220208120856_fix_concurrent_poll.up.sql │ ├── 20220713122907_fix-clear_all-keep-nil-message.down.sql │ ├── 20220713122907_fix-clear_all-keep-nil-message.up.sql │ ├── 20240111102028_notifications_setup.sql │ ├── 20240229144542_create_notification_cool_off_tracker_table.down.sql │ ├── 20240229144542_create_notification_cool_off_tracker_table.up.sql │ ├── 20240312083208_fix_concurrent_poll.down.sql │ ├── 20240312083208_fix_concurrent_poll.up.sql │ ├── 20240318074634_skip_locked_rows_in_mq_poll.down.sql │ ├── 20240318074634_skip_locked_rows_in_mq_poll.up.sql │ ├── 20240321091909_create_email_reminder_projection.down.sql │ ├── 20240321091909_create_email_reminder_projection.up.sql │ ├── 20240406100757_create_in_app_notifications.down.sql │ ├── 20240406100757_create_in_app_notifications.up.sql │ ├── 20240417091715_add_stateful_notifications.down.sql │ ├── 20240417091715_add_stateful_notifications.up.sql │ ├── 20240418115910_remove_in_app_notifications.down.sql │ ├── 20240418115910_remove_in_app_notifications.up.sql │ ├── 20240429083109_add_acknowledged_col_to_stateful_notifications.down.sql │ ├── 20240429083109_add_acknowledged_col_to_stateful_notifications.up.sql │ ├── 20240506184652_add_bulletin_enabled_col_to_stateful_notifications.down.sql │ └── 20240506184652_add_bulletin_enabled_col_to_stateful_notifications.up.sql │ ├── notifications.yml │ ├── proto │ └── notifications.proto │ ├── src │ ├── app │ │ ├── config.rs │ │ ├── error.rs │ │ └── mod.rs │ ├── bin │ │ └── write_sdl.rs │ ├── cli │ │ ├── config.rs │ │ ├── db.rs │ │ └── mod.rs │ ├── data_import │ │ ├── config.rs │ │ ├── mod.rs │ │ └── mongodb.rs │ ├── email_executor │ │ ├── config.rs │ │ ├── error.rs │ │ ├── mod.rs │ │ └── smtp │ │ │ ├── config.rs │ │ │ ├── error.rs │ │ │ └── mod.rs │ ├── email_reminder_projection │ │ ├── config.rs │ │ ├── error.rs │ │ └── mod.rs │ ├── graphql │ │ ├── convert.rs │ │ ├── mod.rs │ │ ├── schema.rs │ │ ├── server │ │ │ ├── config.rs │ │ │ ├── jwks │ │ │ │ ├── error.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ └── types.rs │ ├── grpc │ │ ├── config.rs │ │ ├── mod.rs │ │ └── server │ │ │ ├── convert.rs │ │ │ └── mod.rs │ ├── history │ │ ├── entity.rs │ │ ├── error.rs │ │ ├── mod.rs │ │ └── repo.rs │ ├── job │ │ ├── config.rs │ │ ├── error.rs │ │ ├── mod.rs │ │ ├── send_email_notification.rs │ │ └── send_push_notification.rs │ ├── lib.rs │ ├── main.rs │ ├── messages │ │ ├── email_formatter.rs │ │ └── mod.rs │ ├── notification_cool_off_tracker │ │ └── mod.rs │ ├── notification_event │ │ ├── circle_grew.rs │ │ ├── circle_threshold_reached.rs │ │ ├── identity_verification_approved.rs │ │ ├── identity_verification_declined.rs │ │ ├── identity_verification_review_started.rs │ │ ├── link_email_reminder.rs │ │ ├── marketing_notification_triggered.rs │ │ ├── mod.rs │ │ ├── price_changed.rs │ │ └── transaction_occurred.rs │ ├── primitives.rs │ ├── push_executor │ │ ├── config.rs │ │ ├── error.rs │ │ ├── fcm │ │ │ ├── config.rs │ │ │ ├── error.rs │ │ │ └── mod.rs │ │ └── mod.rs │ └── user_notification_settings │ │ ├── entity.rs │ │ ├── error.rs │ │ ├── mod.rs │ │ ├── repo.rs │ │ └── value.rs │ ├── subgraph │ └── schema.graphql │ ├── templates │ ├── general.hbs │ ├── layouts │ │ └── base.hbs │ └── partials │ │ └── styles.hbs │ └── transifex.yml ├── dev ├── .gitignore ├── BUCK ├── Tiltfile ├── bin │ ├── add-test-users-with-usernames.sh │ ├── check-quickstart.sh │ ├── fund-user.sh │ ├── get-kratos-code.sh │ ├── init-lightning.sh │ ├── init-onchain.sh │ ├── init-test-user.sh │ ├── run-stoppable-trigger.sh │ ├── setup-hydra-client.sh │ ├── setup-voucher-escrow.sh │ ├── tilt-ci.sh │ └── update-schemas.sh ├── config │ ├── apollo-federation │ │ ├── README.md │ │ ├── router.yaml │ │ ├── supergraph-config.yaml │ │ └── supergraph.graphql │ ├── bitcoind │ │ ├── bitcoin.conf │ │ └── bitcoind_signer_descriptors.json │ ├── bria.yml │ ├── fulcrum │ │ ├── fulcrum.conf │ │ ├── tls.cert │ │ └── tls.key │ ├── lnd │ │ ├── lnd.conf │ │ ├── regtest │ │ │ ├── lnd-outside-1.admin.macaroon │ │ │ ├── lnd-outside-1.admin.macaroon.base64 │ │ │ ├── lnd-outside-1.macaroons.db │ │ │ ├── lnd-outside-1.pubkey │ │ │ ├── lnd-outside-1.wallet.db │ │ │ ├── lnd-outside-2.admin.macaroon │ │ │ ├── lnd-outside-2.admin.macaroon.base64 │ │ │ ├── lnd-outside-2.macaroons.db │ │ │ ├── lnd-outside-2.pubkey │ │ │ ├── lnd-outside-2.wallet.db │ │ │ ├── lnd1.admin.macaroon │ │ │ ├── lnd1.admin.macaroon.base64 │ │ │ ├── lnd1.macaroons.db │ │ │ ├── lnd1.pubkey │ │ │ ├── lnd1.wallet.db │ │ │ ├── lnd2.admin.macaroon │ │ │ ├── lnd2.admin.macaroon.base64 │ │ │ ├── lnd2.macaroons.db │ │ │ ├── lnd2.pubkey │ │ │ └── lnd2.wallet.db │ │ ├── tls.cert │ │ └── tls.key │ ├── notifications │ │ ├── fake_service_account.json │ │ └── notifications.yml │ ├── ory │ │ ├── body.jsonnet │ │ ├── email_no_password_v0.identity.schema.json │ │ ├── hydra.yml │ │ ├── jwks.json │ │ ├── kratos.yml │ │ ├── oathkeeper.yml │ │ ├── oathkeeper_rules.yaml │ │ ├── phone_email_no_password_v0.identity.schema.json │ │ ├── phone_no_password_v0.identity.schema.json │ │ └── username_password_deviceid_v0.identity.schema.json │ ├── otel-agent-config.yaml │ ├── price.yml │ ├── stablesats.yml │ └── telegram-passport │ │ ├── private.pem │ │ └── public.pem ├── core-bundle │ ├── dummy-env.json │ ├── integration-env.json │ └── serve-env.json ├── docker-compose.deps.yml ├── healthcheck.py ├── helpers │ ├── auth.sh │ ├── cli.sh │ ├── gql.sh │ ├── gql │ │ ├── api-key-create.gql │ │ ├── default-account.gql │ │ ├── on-chain-address-create.gql │ │ ├── transactions.gql │ │ ├── update-username.gql │ │ ├── user-email-registration-initiate.gql │ │ ├── user-email-registration-validate.gql │ │ └── wallets-for-account.gql │ └── onchain.sh └── tilt.bzl ├── docs ├── BUCK2.md ├── CI.md ├── DEVELOPMENT_ENVIRONMENT.md ├── LEGACY_DEV.md ├── README.md ├── hydra.md └── hydra.tf ├── flake.lock ├── flake.nix ├── lib ├── es-entity-rs │ ├── BUCK │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── events.rs │ │ ├── id.rs │ │ ├── lib.rs │ │ └── main.rs ├── eslint-config │ ├── .eslintrc.base.js │ ├── .prettierrc.js │ ├── BUCK │ └── package.json ├── galoy-components │ ├── .storybook │ │ ├── main.ts │ │ └── preview.ts │ ├── BUCK │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── components │ │ │ ├── button │ │ │ │ ├── button.stories.tsx │ │ │ │ └── button.tsx │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.ts │ │ ├── tailwind.css │ │ └── utils │ │ │ └── index.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── gt3-server-node-express-sdk │ ├── BUCK │ ├── geetest-lib-result.js │ ├── geetest-lib.js │ └── package.json ├── job-executor-rs │ ├── .env │ ├── .sqlx │ │ └── query-7bc0ab72b1fe05b1f06d1df8af1b4a2db342927ea97f19a44c145f24a44012a3.json │ ├── BUCK │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs └── tracing-rs │ ├── BUCK │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── main.rs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prelude ├── .buckconfig ├── .gitignore ├── BUCK ├── abi │ ├── BUCK.v2 │ └── constraints │ │ └── BUCK.v2 ├── alias.bzl ├── android │ ├── aapt2_link.bzl │ ├── android.bzl │ ├── android_aar.bzl │ ├── android_apk.bzl │ ├── android_binary.bzl │ ├── android_binary_native_library_rules.bzl │ ├── android_binary_resources_rules.bzl │ ├── android_build_config.bzl │ ├── android_bundle.bzl │ ├── android_instrumentation_apk.bzl │ ├── android_instrumentation_test.bzl │ ├── android_library.bzl │ ├── android_manifest.bzl │ ├── android_prebuilt_aar.bzl │ ├── android_providers.bzl │ ├── android_resource.bzl │ ├── android_toolchain.bzl │ ├── apk_genrule.bzl │ ├── build_only_native_code.bzl │ ├── configuration.bzl │ ├── constraints │ │ └── BUCK.v2 │ ├── cpu_filters.bzl │ ├── dex_rules.bzl │ ├── exopackage.bzl │ ├── gen_aidl.bzl │ ├── min_sdk_version.bzl │ ├── prebuilt_native_library.bzl │ ├── preprocess_java_classes.bzl │ ├── proguard.bzl │ ├── r_dot_java.bzl │ ├── robolectric_test.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── com │ │ │ └── facebook │ │ │ │ └── buck_generated │ │ │ │ └── AppWithoutResourcesStub.java │ │ ├── combine_native_library_dirs.py │ │ ├── filter_dex.py │ │ ├── filter_extra_resources.py │ │ ├── filter_prebuilt_native_library_dir.py │ │ ├── merge_sequence.py │ │ ├── native_libs_as_assets_metadata.py │ │ └── unpack_aar.py │ ├── util.bzl │ └── voltron.bzl ├── apple │ ├── apple_asset_catalog.bzl │ ├── apple_asset_catalog_compilation_options.bzl │ ├── apple_asset_catalog_types.bzl │ ├── apple_binary.bzl │ ├── apple_bundle.bzl │ ├── apple_bundle_attrs.bzl │ ├── apple_bundle_config.bzl │ ├── apple_bundle_destination.bzl │ ├── apple_bundle_part.bzl │ ├── apple_bundle_resources.bzl │ ├── apple_bundle_types.bzl │ ├── apple_bundle_utility.bzl │ ├── apple_code_signing_types.bzl │ ├── apple_core_data.bzl │ ├── apple_core_data_types.bzl │ ├── apple_dsym.bzl │ ├── apple_dsym_config.bzl │ ├── apple_entitlements.bzl │ ├── apple_framework_versions.bzl │ ├── apple_frameworks.bzl │ ├── apple_info_plist.bzl │ ├── apple_info_plist_substitutions_parsing.bzl │ ├── apple_library.bzl │ ├── apple_macro_layer.bzl │ ├── apple_modular_utility.bzl │ ├── apple_package.bzl │ ├── apple_package_config.bzl │ ├── apple_resource.bzl │ ├── apple_resource_bundle.bzl │ ├── apple_resource_types.bzl │ ├── apple_resource_utility.bzl │ ├── apple_rules_impl.bzl │ ├── apple_rules_impl_utility.bzl │ ├── apple_sdk.bzl │ ├── apple_sdk_metadata.bzl │ ├── apple_stripping.bzl │ ├── apple_swift_stdlib.bzl │ ├── apple_target_sdk_version.bzl │ ├── apple_test.bzl │ ├── apple_toolchain.bzl │ ├── apple_toolchain_types.bzl │ ├── apple_universal_binaries.bzl │ ├── apple_universal_executable.bzl │ ├── apple_utility.bzl │ ├── apple_xcuitest.bzl │ ├── debug.bzl │ ├── modulemap.bzl │ ├── prebuilt_apple_framework.bzl │ ├── resource_groups.bzl │ ├── scene_kit_assets.bzl │ ├── scene_kit_assets_types.bzl │ ├── swift │ │ ├── apple_sdk_clang_module.bzl │ │ ├── apple_sdk_modules_utility.bzl │ │ ├── apple_sdk_swift_module.bzl │ │ ├── swift_compilation.bzl │ │ ├── swift_debug_info_utils.bzl │ │ ├── swift_incremental_support.bzl │ │ ├── swift_module_map.bzl │ │ ├── swift_pcm_compilation.bzl │ │ ├── swift_pcm_compilation_types.bzl │ │ ├── swift_runtime.bzl │ │ ├── swift_sdk_pcm_compilation.bzl │ │ ├── swift_sdk_swiftinterface_compilation.bzl │ │ ├── swift_toolchain.bzl │ │ ├── swift_toolchain_macro_layer.bzl │ │ ├── swift_toolchain_types.bzl │ │ └── swift_types.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── bundling │ │ │ ├── BUCK.v2 │ │ │ ├── action_metadata.py │ │ │ ├── action_metadata_test.py │ │ │ ├── assemble_bundle.py │ │ │ ├── assemble_bundle_types.py │ │ │ ├── incremental_state.py │ │ │ ├── incremental_state_test.py │ │ │ ├── incremental_utils.py │ │ │ ├── incremental_utils_test.py │ │ │ ├── main.py │ │ │ ├── swift_support.py │ │ │ └── test_resources │ │ │ │ ├── newer_version_action_metadata.json │ │ │ │ ├── newer_version_incremental_state.json │ │ │ │ ├── the.broken_json │ │ │ │ ├── valid_action_metadata.json │ │ │ │ └── valid_incremental_state.json │ │ ├── code_signing │ │ │ ├── BUCK.v2 │ │ │ ├── app_id.py │ │ │ ├── app_id_test.py │ │ │ ├── apple_platform.py │ │ │ ├── codesign_bundle.py │ │ │ ├── codesign_command_factory.py │ │ │ ├── fast_adhoc.py │ │ │ ├── identity.py │ │ │ ├── identity_test.py │ │ │ ├── info_plist_metadata.py │ │ │ ├── info_plist_metadata_test.py │ │ │ ├── list_codesign_identities.py │ │ │ ├── main.py │ │ │ ├── prepare_code_signing_entitlements.py │ │ │ ├── prepare_code_signing_entitlements_test.py │ │ │ ├── prepare_info_plist.py │ │ │ ├── prepare_info_plist_test.py │ │ │ ├── provisioning_profile_diagnostics.py │ │ │ ├── provisioning_profile_metadata.py │ │ │ ├── provisioning_profile_metadata_test.py │ │ │ ├── provisioning_profile_selection.py │ │ │ ├── provisioning_profile_selection_test.py │ │ │ ├── read_provisioning_profile_command_factory.py │ │ │ └── test_resources │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── qualified_sample.mobileprovision │ │ │ │ └── sample.mobileprovision │ │ ├── defs.bzl │ │ ├── dry_codesign_tool.py │ │ ├── info_plist_processor │ │ │ ├── BUCK.v2 │ │ │ ├── main.py │ │ │ ├── preprocess.py │ │ │ ├── preprocess_test.py │ │ │ ├── process.py │ │ │ └── process_test.py │ │ ├── ipa_package_maker.py │ │ ├── make_modulemap.py │ │ ├── make_swift_comp_db.py │ │ ├── make_swift_interface.py │ │ ├── make_vfsoverlay.py │ │ ├── plistlib_utils.py │ │ ├── re_compatibility_utils │ │ │ ├── BUCK │ │ │ └── writable.py │ │ ├── resource_broker │ │ │ ├── BUCK.v2 │ │ │ ├── idb_companion.py │ │ │ ├── idb_target.py │ │ │ ├── ios.py │ │ │ ├── macos.py │ │ │ ├── main.py │ │ │ ├── simctl_runtime.py │ │ │ ├── timeouts.py │ │ │ └── utils.py │ │ ├── selective_debugging │ │ │ ├── BUCK.v2 │ │ │ ├── macho.py │ │ │ ├── macho_parser.py │ │ │ ├── main.py │ │ │ ├── scrubber.py │ │ │ ├── scrubber_test.py │ │ │ ├── spec.py │ │ │ ├── spec_test.py │ │ │ ├── test_resources │ │ │ │ ├── HelloWorld │ │ │ │ ├── focused_spec.json │ │ │ │ ├── focused_targets.json │ │ │ │ └── focused_targets_empty.json │ │ │ └── utils.py │ │ ├── split_arch_combine_dsym_bundles_tool.py │ │ ├── swift_exec.sh │ │ └── swift_objc_header_postprocess.py │ ├── user │ │ ├── apple_resource_bundle.bzl │ │ ├── apple_resource_transition.bzl │ │ ├── apple_selected_debug_path_file.bzl │ │ ├── apple_selective_debugging.bzl │ │ ├── apple_simulators.bzl │ │ ├── apple_toolchain_override.bzl │ │ ├── apple_tools.bzl │ │ ├── apple_watchos_bundle.bzl │ │ ├── cpu_split_transition.bzl │ │ ├── resource_group_map.bzl │ │ └── watch_transition.bzl │ ├── xcode.bzl │ ├── xcode_postbuild_script.bzl │ ├── xcode_prebuild_script.bzl │ └── xctest_swift_support.bzl ├── artifact_tset.bzl ├── artifacts.bzl ├── asserts.bzl ├── attributes.bzl ├── buck2_compatibility.bzl ├── build_mode.bzl ├── builtin.bzl ├── cache_mode.bzl ├── command_alias.bzl ├── configurations │ ├── rules.bzl │ └── util.bzl ├── cpu │ ├── BUCK.v2 │ └── constraints │ │ └── BUCK.v2 ├── csharp │ ├── csharp.bzl │ ├── csharp_providers.bzl │ └── toolchain.bzl ├── cxx │ ├── anon_link.bzl │ ├── archive.bzl │ ├── argsfiles.bzl │ ├── attr_selection.bzl │ ├── bitcode.bzl │ ├── comp_db.bzl │ ├── compile.bzl │ ├── compiler.bzl │ ├── cxx.bzl │ ├── cxx_bolt.bzl │ ├── cxx_context.bzl │ ├── cxx_executable.bzl │ ├── cxx_library.bzl │ ├── cxx_library_utility.bzl │ ├── cxx_link_utility.bzl │ ├── cxx_sources.bzl │ ├── cxx_toolchain.bzl │ ├── cxx_toolchain_macro_layer.bzl │ ├── cxx_toolchain_types.bzl │ ├── cxx_types.bzl │ ├── cxx_utility.bzl │ ├── debug.bzl │ ├── dist_lto │ │ ├── README.md │ │ ├── dist_lto.bzl │ │ ├── tools.bzl │ │ └── tools │ │ │ ├── BUCK.v2 │ │ │ ├── __init__.py │ │ │ ├── dist_lto_copy.py │ │ │ ├── dist_lto_opt.py │ │ │ ├── dist_lto_planner.py │ │ │ ├── dist_lto_prepare.py │ │ │ └── tests │ │ │ └── test_dist_lto_opt.py │ ├── dwp.bzl │ ├── groups.bzl │ ├── headers.bzl │ ├── link.bzl │ ├── link_groups.bzl │ ├── link_types.bzl │ ├── linker.bzl │ ├── omnibus.bzl │ ├── platform.bzl │ ├── prebuilt_cxx_library_group.bzl │ ├── preprocessor.bzl │ ├── shared_library_interface.bzl │ ├── symbols.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── defs.bzl │ │ ├── dep_file_processor.py │ │ ├── dep_file_utils.py │ │ ├── hmap_wrapper.py │ │ ├── linker_wrapper.py │ │ ├── make_comp_db.py │ │ ├── makefile_to_dep_file.py │ │ ├── show_headers_to_dep_file.py │ │ └── show_includes_to_dep_file.py │ ├── user │ │ ├── cxx_toolchain_override.bzl │ │ └── link_group_map.bzl │ ├── windows_resource.bzl │ └── xcode.bzl ├── debugging │ ├── common.bzl │ ├── ensure_dwp.bzl │ ├── fdb.bxl │ ├── inspect_dbg_exec.bzl │ ├── inspect_default.bzl │ ├── inspect_java.bzl │ ├── labels.bzl │ └── types.bzl ├── decls │ ├── android_common.bzl │ ├── android_rules.bzl │ ├── apple_common.bzl │ ├── common.bzl │ ├── core_rules.bzl │ ├── cxx_common.bzl │ ├── cxx_rules.bzl │ ├── d_common.bzl │ ├── d_rules.bzl │ ├── dotnet_rules.bzl │ ├── erlang_rules.bzl │ ├── genrule_common.bzl │ ├── git_rules.bzl │ ├── go_common.bzl │ ├── go_rules.bzl │ ├── groovy_rules.bzl │ ├── halide_rules.bzl │ ├── haskell_common.bzl │ ├── haskell_rules.bzl │ ├── ios_rules.bzl │ ├── java_rules.bzl │ ├── js_rules.bzl │ ├── jvm_common.bzl │ ├── kotlin_rules.bzl │ ├── lua_common.bzl │ ├── lua_rules.bzl │ ├── native_common.bzl │ ├── ocaml_common.bzl │ ├── ocaml_rules.bzl │ ├── python_common.bzl │ ├── python_rules.bzl │ ├── re_test_common.bzl │ ├── remote_common.bzl │ ├── rust_common.bzl │ ├── rust_rules.bzl │ ├── scala_rules.bzl │ ├── shell_rules.bzl │ ├── toolchains_common.bzl │ └── uncategorized_rules.bzl ├── dist │ └── dist_info.bzl ├── docs │ └── rules.bzl ├── erlang │ ├── applications │ │ └── BUCK.v2 │ ├── common_test │ │ ├── .elp.toml │ │ ├── common │ │ │ ├── BUCK.v2 │ │ │ ├── include │ │ │ │ ├── artifact_annotations.hrl │ │ │ │ ├── buck_ct_records.hrl │ │ │ │ └── tpx_records.hrl │ │ │ └── src │ │ │ │ ├── artifact_annotations.erl │ │ │ │ ├── bounded_buffer.erl │ │ │ │ ├── buck_ct_parser.erl │ │ │ │ ├── buck_ct_provider.erl │ │ │ │ ├── ct_error_printer.erl │ │ │ │ ├── execution_logs.erl │ │ │ │ ├── io_buffer.erl │ │ │ │ ├── test_artifact_directory.erl │ │ │ │ └── test_logger.erl │ │ ├── cth_hooks │ │ │ ├── BUCK.v2 │ │ │ └── src │ │ │ │ ├── cth_tpx.erl │ │ │ │ ├── cth_tpx_role.erl │ │ │ │ ├── cth_tpx_server.erl │ │ │ │ ├── cth_tpx_test_tree.erl │ │ │ │ └── method_ids.hrl │ │ ├── test_binary │ │ │ ├── BUCK.v2 │ │ │ └── src │ │ │ │ ├── json_interfacer.erl │ │ │ │ ├── junit_interfacer.erl │ │ │ │ ├── list_test.erl │ │ │ │ ├── listing_interfacer.erl │ │ │ │ ├── test_binary.erl │ │ │ │ └── test_runner.erl │ │ ├── test_cli_lib │ │ │ ├── BUCK.v2 │ │ │ ├── src │ │ │ │ └── test.erl │ │ │ └── test │ │ │ │ ├── test_cli_e2e_SUITE.erl │ │ │ │ └── test_cli_e2e_SUITE_data │ │ │ │ └── test_list_SUITE.erl │ │ └── test_exec │ │ │ ├── BUCK.v2 │ │ │ ├── src │ │ │ ├── ct_daemon.erl │ │ │ ├── ct_daemon_core.erl │ │ │ ├── ct_daemon_hooks.erl │ │ │ ├── ct_daemon_logger.erl │ │ │ ├── ct_daemon_node.erl │ │ │ ├── ct_daemon_printer.erl │ │ │ ├── ct_daemon_runner.erl │ │ │ ├── ct_executor.erl │ │ │ ├── ct_runner.erl │ │ │ ├── epmd_manager.erl │ │ │ ├── test_exec.app.src │ │ │ ├── test_exec.erl │ │ │ └── test_exec_sup.erl │ │ │ └── test │ │ │ └── ct_executor_SUITE.erl │ ├── erlang.bzl │ ├── erlang_application.bzl │ ├── erlang_application_includes.bzl │ ├── erlang_build.bzl │ ├── erlang_dependencies.bzl │ ├── erlang_escript.bzl │ ├── erlang_info.bzl │ ├── erlang_ls.config │ ├── erlang_otp_application.bzl │ ├── erlang_release.bzl │ ├── erlang_shell.bzl │ ├── erlang_tests.bzl │ ├── erlang_toolchain.bzl │ ├── erlang_utils.bzl │ ├── shell │ │ ├── BUCK.v2 │ │ ├── shell.bxl │ │ └── src │ │ │ ├── shell_buck2_utils.erl │ │ │ └── user_default.erl │ └── toolchain │ │ ├── BUCK.v2 │ │ ├── app_src_builder.escript │ │ ├── boot_script_builder.escript │ │ ├── dependency_analyzer.escript │ │ ├── dependency_finalizer.escript │ │ ├── edoc_cli.escript │ │ ├── edoc_doclet_chunks.erl │ │ ├── edoc_report.erl │ │ ├── erlang_ls.config │ │ ├── erlc_trampoline.sh │ │ ├── escript_builder.escript │ │ ├── include_erts.escript │ │ ├── release_variables_builder.escript │ │ └── transform_project_root.erl ├── export_exe.bzl ├── export_file.bzl ├── filegroup.bzl ├── genrule.bzl ├── genrule_local_labels.bzl ├── genrule_toolchain.bzl ├── git │ ├── git_fetch.bzl │ └── tools │ │ ├── BUCK.v2 │ │ └── git_fetch.py ├── go │ ├── cgo_library.bzl │ ├── compile.bzl │ ├── constraints │ │ ├── BUCK.v2 │ │ └── defs.bzl │ ├── coverage.bzl │ ├── go_binary.bzl │ ├── go_exported_library.bzl │ ├── go_library.bzl │ ├── go_stdlib.bzl │ ├── go_test.bzl │ ├── link.bzl │ ├── packages.bzl │ ├── toolchain.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── cgo_wrapper.py │ │ ├── compile_wrapper.py │ │ ├── concat_files.py │ │ ├── cover_srcs.py │ │ ├── filter_srcs.py │ │ ├── gen_stdlib_importcfg.py │ │ ├── go_wrapper.py │ │ └── testmaingen.go │ └── transitions │ │ ├── defs.bzl │ │ └── tags_helper.bzl ├── haskell │ ├── compile.bzl │ ├── haskell.bzl │ ├── haskell_ghci.bzl │ ├── haskell_haddock.bzl │ ├── haskell_ide.bzl │ ├── ide │ │ ├── README.md │ │ ├── hie.yaml │ │ └── ide.bxl │ ├── library_info.bzl │ ├── link_info.bzl │ ├── toolchain.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ └── script_template_processor.py │ └── util.bzl ├── http_archive │ ├── exec_deps.bzl │ ├── http_archive.bzl │ └── tools │ │ ├── BUCK.v2 │ │ └── create_exclusion_list.py ├── http_file.bzl ├── ide_integrations │ └── xcode.bzl ├── is_buck2.bzl ├── is_buck2_internal.bzl ├── is_full_meta_repo.bzl ├── java │ ├── class_to_srcs.bzl │ ├── dex.bzl │ ├── dex_toolchain.bzl │ ├── gwt_binary.bzl │ ├── jar_genrule.bzl │ ├── java.bzl │ ├── java_binary.bzl │ ├── java_library.bzl │ ├── java_providers.bzl │ ├── java_resources.bzl │ ├── java_test.bzl │ ├── java_toolchain.bzl │ ├── javacd_jar_creator.bzl │ ├── keystore.bzl │ ├── plugins │ │ ├── java_annotation_processor.bzl │ │ └── java_plugin.bzl │ ├── prebuilt_jar.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── compile_and_package.py │ │ ├── fat_jar.py │ │ ├── gen_class_to_source_map.py │ │ ├── list_class_names.py │ │ ├── merge_class_to_source_maps.py │ │ └── utils.py │ └── utils │ │ ├── java_more_utils.bzl │ │ └── java_utils.bzl ├── js │ ├── js.bzl │ ├── js_bundle.bzl │ ├── js_bundle_genrule.bzl │ ├── js_library.bzl │ ├── js_providers.bzl │ └── js_utils.bzl ├── julia │ ├── julia.bzl │ ├── julia_binary.bzl │ ├── julia_info.bzl │ ├── julia_library.bzl │ ├── julia_test.bzl │ ├── julia_toolchain.bzl │ └── tools │ │ ├── BUCK.v2 │ │ └── parse_julia_cmd.py ├── jvm │ ├── cd_jar_creator_util.bzl │ └── nullsafe.bzl ├── kotlin │ ├── kotlin.bzl │ ├── kotlin_library.bzl │ ├── kotlin_test.bzl │ ├── kotlin_toolchain.bzl │ ├── kotlin_utils.bzl │ ├── kotlincd_jar_creator.bzl │ └── tools │ │ ├── compile_kotlin │ │ ├── BUCK.v2 │ │ └── compile_kotlin.py │ │ ├── defs.bzl │ │ └── kapt_base64_encoder │ │ ├── BUCK.v2 │ │ └── com │ │ └── facebook │ │ └── kapt │ │ └── KaptBase64Encoder.java ├── linking │ ├── execution_preference.bzl │ ├── link_groups.bzl │ ├── link_info.bzl │ ├── linkable_graph.bzl │ ├── linkables.bzl │ ├── lto.bzl │ ├── shared_libraries.bzl │ └── strip.bzl ├── local_only.bzl ├── lua │ ├── cxx_lua_extension.bzl │ ├── lua_binary.bzl │ └── lua_library.bzl ├── matlab │ ├── matlab.bzl │ ├── matlab_info.bzl │ ├── matlab_program.bzl │ └── matlab_toolchain.bzl ├── native.bzl ├── ocaml │ ├── attrs.bzl │ ├── makefile.bzl │ ├── ocaml.bzl │ └── ocaml_toolchain_types.bzl ├── os │ ├── BUCK.v2 │ └── constraints │ │ └── BUCK.v2 ├── os_lookup │ ├── defs.bzl │ └── targets │ │ └── BUCK.v2 ├── oss │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── pull_request_template.md ├── paths.bzl ├── platforms │ ├── BUCK │ ├── BUCK.v2 │ ├── apple │ │ ├── arch.bzl │ │ └── sdk.bzl │ └── defs.bzl ├── playground │ └── test.bxl ├── prelude.bzl ├── python │ ├── compile.bzl │ ├── cxx_python_extension.bzl │ ├── interface.bzl │ ├── make_py_package.bzl │ ├── manifest.bzl │ ├── native_python_util.bzl │ ├── needed_coverage.bzl │ ├── prebuilt_python_library.bzl │ ├── python.bzl │ ├── python_binary.bzl │ ├── python_library.bzl │ ├── python_needed_coverage_test.bzl │ ├── python_test.bzl │ ├── runtime │ │ ├── BUCK.v2 │ │ └── __par__ │ │ │ └── bootstrap.py │ ├── source_db.bzl │ ├── sourcedb │ │ ├── build.bxl │ │ ├── classic.bxl │ │ ├── code_navigation.bxl │ │ ├── filter.bxl │ │ ├── merge.bxl │ │ └── query.bxl │ ├── toolchain.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── __test_main__.py │ │ ├── compile.py │ │ ├── create_manifest_for_source_dir.py │ │ ├── embedded_main.cpp │ │ ├── extract.py │ │ ├── fail_with_message.py │ │ ├── generate_static_extension_info.py │ │ ├── make_par │ │ │ ├── BUCK │ │ │ ├── __run_lpar_main__.py │ │ │ ├── _lpar_bootstrap.sh.template │ │ │ └── sitecustomize.py │ │ ├── make_py_package_inplace.py │ │ ├── make_py_package_manifest_module.py │ │ ├── make_py_package_modules.py │ │ ├── make_source_db.py │ │ ├── make_source_db_no_deps.py │ │ ├── parse_imports.py │ │ ├── py38stdlib.py │ │ ├── run_inplace.py.in │ │ ├── run_inplace_lite.py.in │ │ ├── sourcedb_merger │ │ │ ├── BUCK.v2 │ │ │ ├── inputs.py │ │ │ ├── legacy_merge.py │ │ │ ├── legacy_outputs.py │ │ │ ├── merge.py │ │ │ ├── outputs.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── inputs_test.py │ │ │ │ ├── legacy_output_test.py │ │ │ │ ├── main.sh │ │ │ │ └── outputs_test.py │ │ ├── static_extension_finder.py │ │ ├── static_extension_utils.cpp │ │ └── traverse_dep_manifest.py │ ├── typecheck │ │ └── batch.bxl │ └── typing.bzl ├── python_bootstrap │ ├── python_bootstrap.bzl │ └── tools │ │ ├── BUCK.v2 │ │ └── win_python_wrapper.bat ├── remote_file.bzl ├── resources.bzl ├── rules.bzl ├── rules_impl.bzl ├── rust │ ├── build.bzl │ ├── build_params.bzl │ ├── cargo_buildscript.bzl │ ├── cargo_package.bzl │ ├── context.bzl │ ├── extern.bzl │ ├── failure_filter.bzl │ ├── link_info.bzl │ ├── proc_macro_alias.bzl │ ├── resources.bzl │ ├── rust-analyzer │ │ ├── check.bxl │ │ └── resolve_deps.bxl │ ├── rust_binary.bzl │ ├── rust_common.bzl │ ├── rust_library.bzl │ ├── rust_toolchain.bzl │ ├── targets.bzl │ ├── tools │ │ ├── BUCK.v2 │ │ ├── attrs.bzl │ │ ├── buildscript_run.py │ │ ├── failure_filter_action.py │ │ ├── rustc_action.py │ │ ├── rustdoc_coverage.py │ │ ├── rustdoc_test_with_resources.py │ │ ├── tool_rules.bzl │ │ └── transitive_dependency_symlinks.py │ └── with_workspace.bzl ├── sh_binary.bzl ├── sh_test.bzl ├── test │ ├── inject_test_run_info.bzl │ └── tools │ │ ├── BUCK.v2 │ │ └── inject_test_env.py ├── test_suite.bzl ├── tests │ ├── re_utils.bzl │ ├── remote_test_execution_toolchain.bzl │ └── tpx_re_legacy.bzl ├── third-party │ └── hmaptool │ │ ├── BUCK.v2 │ │ ├── METADATA.bzl │ │ ├── README.md │ │ └── hmaptool ├── toolchains │ ├── apple │ │ └── xcode_version_checker │ │ │ ├── .gitignore │ │ │ ├── BUCK.v2 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── defs.bzl │ │ │ ├── src │ │ │ ├── xcode_exec_tester.m │ │ │ ├── xcode_version_checker.m │ │ │ ├── xcode_version_checks.h │ │ │ ├── xcode_version_checks.m │ │ │ └── xcode_version_tester.m │ │ │ ├── test │ │ │ └── Xcode_14.2.0_14C18_fb_version.plist │ │ │ └── xcode_version_checker │ ├── conan │ │ ├── BUCK │ │ ├── buckler │ │ │ └── conanfile.py │ │ ├── conan_common.py │ │ ├── conan_generate.py │ │ ├── conan_init.py │ │ ├── conan_lock.py │ │ ├── conan_package.py │ │ ├── conan_package_extract.py │ │ ├── conan_update.py │ │ ├── defs.bzl │ │ └── lock_generate.py │ ├── csharp.bzl │ ├── cxx.bzl │ ├── cxx │ │ └── zig │ │ │ ├── BUCK │ │ │ ├── defs.bzl │ │ │ └── releases.bzl │ ├── demo.bzl │ ├── execution_host.bzl │ ├── genrule.bzl │ ├── go.bzl │ ├── haskell.bzl │ ├── msvc │ │ ├── BUCK.v2 │ │ ├── run_msvc_tool.py │ │ ├── tools.bzl │ │ └── vswhere.py │ ├── ocaml.bzl │ ├── python.bzl │ ├── remote_test_execution.bzl │ └── rust.bzl ├── tools │ └── audit_providers_universe.bxl ├── transitions │ └── constraint_overrides.bzl ├── user │ ├── all.bzl │ ├── cxx_headers_bundle.bzl │ ├── extract_archive.bzl │ ├── rule_spec.bzl │ └── write_file.bzl ├── utils │ ├── arglike.bzl │ ├── buckconfig.bzl │ ├── build_target_pattern.bzl │ ├── cmd_script.bzl │ ├── dicts.bzl │ ├── expect.bzl │ ├── graph_utils.bzl │ ├── host.bzl │ ├── lazy.bzl │ ├── pick.bzl │ ├── platform_flavors_util.bzl │ ├── selects.bzl │ ├── set.bzl │ ├── strings.bzl │ ├── type_defs.bzl │ └── utils.bzl ├── validation_deps.bzl ├── windows │ └── tools │ │ ├── BUCK.v2 │ │ └── msvc_hermetic_exec.bat ├── worker_tool.bzl └── zip_file │ ├── tools │ ├── BUCK.v2 │ └── unzip.py │ ├── zip_file.bzl │ └── zip_file_toolchain.bzl ├── quickstart ├── .env.galoy ├── .envrc ├── .gitignore ├── README.md ├── bin │ ├── bump-galoy-git-ref.sh │ ├── bump-galoy-image-digest.sh │ ├── bump-mongodb-migrate-image-digest.sh │ ├── helpers.sh │ ├── init-lightning.sh │ ├── init-onchain.sh │ ├── quickstart.sh │ └── re-render.sh ├── dev │ ├── BUCK │ ├── Tiltfile │ ├── config │ │ ├── apollo-federation │ │ │ ├── README.md │ │ │ ├── router.yaml │ │ │ ├── supergraph-config.yaml │ │ │ └── supergraph.graphql │ │ ├── bitcoind │ │ │ ├── bitcoin.conf │ │ │ └── bitcoind_signer_descriptors.json │ │ ├── bria.yml │ │ ├── fulcrum │ │ │ ├── fulcrum.conf │ │ │ ├── tls.cert │ │ │ └── tls.key │ │ ├── lnd │ │ │ ├── lnd.conf │ │ │ ├── regtest │ │ │ │ ├── lnd-outside-1.admin.macaroon │ │ │ │ ├── lnd-outside-1.admin.macaroon.base64 │ │ │ │ ├── lnd-outside-1.macaroons.db │ │ │ │ ├── lnd-outside-1.pubkey │ │ │ │ ├── lnd-outside-1.wallet.db │ │ │ │ ├── lnd-outside-2.admin.macaroon │ │ │ │ ├── lnd-outside-2.admin.macaroon.base64 │ │ │ │ ├── lnd-outside-2.macaroons.db │ │ │ │ ├── lnd-outside-2.pubkey │ │ │ │ ├── lnd-outside-2.wallet.db │ │ │ │ ├── lnd1.admin.macaroon │ │ │ │ ├── lnd1.admin.macaroon.base64 │ │ │ │ ├── lnd1.macaroons.db │ │ │ │ ├── lnd1.pubkey │ │ │ │ ├── lnd1.wallet.db │ │ │ │ ├── lnd2.admin.macaroon │ │ │ │ ├── lnd2.admin.macaroon.base64 │ │ │ │ ├── lnd2.macaroons.db │ │ │ │ ├── lnd2.pubkey │ │ │ │ └── lnd2.wallet.db │ │ │ ├── tls.cert │ │ │ └── tls.key │ │ ├── notifications │ │ │ ├── fake_service_account.json │ │ │ └── notifications.yml │ │ ├── ory │ │ │ ├── body.jsonnet │ │ │ ├── email_no_password_v0.identity.schema.json │ │ │ ├── hydra.yml │ │ │ ├── jwks.json │ │ │ ├── kratos.yml │ │ │ ├── oathkeeper.yml │ │ │ ├── oathkeeper_rules.yaml │ │ │ ├── phone_email_no_password_v0.identity.schema.json │ │ │ ├── phone_no_password_v0.identity.schema.json │ │ │ └── username_password_deviceid_v0.identity.schema.json │ │ ├── otel-agent-config.yaml │ │ ├── price.yml │ │ ├── stablesats.yml │ │ └── telegram-passport │ │ │ ├── private.pem │ │ │ └── public.pem │ ├── core-bundle │ │ ├── dummy-env.json │ │ ├── integration-env.json │ │ └── serve-env.json │ ├── docker-compose.deps.yml │ ├── healthcheck.py │ ├── helpers │ │ ├── auth.sh │ │ ├── cli.sh │ │ ├── gql.sh │ │ ├── gql │ │ │ ├── api-key-create.gql │ │ │ ├── default-account.gql │ │ │ ├── on-chain-address-create.gql │ │ │ ├── transactions.gql │ │ │ ├── update-username.gql │ │ │ ├── user-email-registration-initiate.gql │ │ │ ├── user-email-registration-validate.gql │ │ │ └── wallets-for-account.gql │ │ └── onchain.sh │ └── tilt.bzl ├── docker-compose.tmpl.yml ├── docker-compose.yml ├── graphql │ ├── gql │ │ ├── account-default-wallet.gql │ │ ├── account-delete.gql │ │ ├── account-details.gql │ │ ├── account-disable-notification-category.gql │ │ ├── account-disable-notification-channel.gql │ │ ├── account-enable-notification-category.gql │ │ ├── account-enable-notification-channel.gql │ │ ├── account-limits.gql │ │ ├── account-update-default-wallet-id.gql │ │ ├── acknowledge-notification.gql │ │ ├── api-key-create.gql │ │ ├── api-keys.gql │ │ ├── authorization.gql │ │ ├── business-map-markers.gql │ │ ├── callback-endpoint-add.gql │ │ ├── callback-endpoint-delete.gql │ │ ├── callback-endpoints-list.gql │ │ ├── contacts.gql │ │ ├── currency-conversion-estimation.gql │ │ ├── default-account.gql │ │ ├── globals.gql │ │ ├── identity.gql │ │ ├── intraledger-payment-send.gql │ │ ├── intraledger-usd-payment-send.gql │ │ ├── invoice-for-wallet-by-payment-hash.gql │ │ ├── invoices-by-wallet.gql │ │ ├── invoices.gql │ │ ├── list-stateful-notifications-without-bulletin-enabled.gql │ │ ├── list-stateful-notifications.gql │ │ ├── list-unacknowledged-stateful-notifications-with-bulletin-enabled.gql │ │ ├── ln-invoice-cancel.gql │ │ ├── ln-invoice-create-on-behalf-of-recipient.gql │ │ ├── ln-invoice-create.gql │ │ ├── ln-invoice-fee-probe.gql │ │ ├── ln-invoice-payment-send.gql │ │ ├── ln-invoice-payment-status-by-hash-sub.gql │ │ ├── ln-invoice-payment-status-by-hash.gql │ │ ├── ln-invoice-payment-status-by-payment-request-sub.gql │ │ ├── ln-invoice-payment-status-by-payment-request.gql │ │ ├── ln-no-amount-invoice-create-on-behalf-of-recipient.gql │ │ ├── ln-no-amount-invoice-create.gql │ │ ├── ln-no-amount-invoice-fee-probe.gql │ │ ├── ln-no-amount-invoice-payment-send.gql │ │ ├── ln-no-amount-usd-invoice-fee-probe.gql │ │ ├── ln-no-amount-usd-invoice-payment-send.gql │ │ ├── ln-usd-invoice-btc-denominated-create-on-behalf-of-recipient.gql │ │ ├── ln-usd-invoice-create-on-behalf-of-recipient.gql │ │ ├── ln-usd-invoice-create.gql │ │ ├── ln-usd-invoice-fee-probe.gql │ │ ├── lnurl-payment-send.gql │ │ ├── logout.gql │ │ ├── merchant-map-suggest.gql │ │ ├── my-updates-sub.gql │ │ ├── on-chain-address-create.gql │ │ ├── on-chain-address-current.gql │ │ ├── on-chain-payment-send-all.gql │ │ ├── on-chain-payment-send.gql │ │ ├── on-chain-tx-fee.gql │ │ ├── on-chain-usd-payment-send-as-btc-denominated.gql │ │ ├── on-chain-usd-payment-send.gql │ │ ├── on-chain-usd-tx-fee-as-btc-denominated.gql │ │ ├── on-chain-usd-tx-fee.gql │ │ ├── pending-incoming-transactions-by-address.gql │ │ ├── pending-incoming-transactions.gql │ │ ├── price-sub.gql │ │ ├── quiz-claim.gql │ │ ├── quiz-question.gql │ │ ├── quiz.gql │ │ ├── real-time-price-sub.gql │ │ ├── real-time-price.gql │ │ ├── revoke-api-key.gql │ │ ├── support-chat-message-add.gql │ │ ├── support-chat-reset.gql │ │ ├── support-chat.gql │ │ ├── transaction-for-wallet-by-id.gql │ │ ├── transactions-by-address.gql │ │ ├── transactions-by-wallet.gql │ │ ├── transactions-for-wallet-by-payment-hash.gql │ │ ├── transactions-for-wallet-by-payment-request.gql │ │ ├── transactions.gql │ │ ├── unacknowledged-stateful-notifications-without-bulletin-enabled-count.gql │ │ ├── update-display-currency.gql │ │ ├── user-details.gql │ │ ├── user-email-delete.gql │ │ ├── user-email-registration-initiate.gql │ │ ├── user-email-registration-validate.gql │ │ ├── user-login-upgrade.gql │ │ ├── user-login.gql │ │ ├── user-notification-settings.gql │ │ ├── user-phone-delete.gql │ │ ├── user-phone-registration-initiate.gql │ │ ├── user-phone-registration-validate.gql │ │ ├── user-totp-delete.gql │ │ ├── user-totp-registration-initiate.gql │ │ ├── user-totp-registration-validate.gql │ │ ├── user-update-language.gql │ │ ├── user-update-username.gql │ │ ├── username-available.gql │ │ └── wallets-for-account.gql │ └── schemas │ │ ├── admin │ │ └── schema.graphql │ │ └── public │ │ └── schema.graphql ├── quickstart.vendir.yml ├── vendir.lock.yml ├── vendir.yml └── vendir │ ├── template.yml │ └── values.yml ├── rust-toolchain.toml ├── rustfmt.toml ├── third-party ├── macros │ └── rust_third_party.bzl ├── node │ ├── rover │ │ ├── BUCK │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── pnpm-workspace.yaml │ └── turbo │ │ ├── BUCK │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── pnpm-workspace.yaml ├── patches │ └── nix_rustc_action.py.patch └── rust │ ├── BUCK │ ├── Cargo.lock │ ├── Cargo.toml │ ├── fixups │ ├── ahash │ │ └── fixups.toml │ ├── anyhow │ │ └── fixups.toml │ ├── async-trait │ │ └── fixups.toml │ ├── axum-core │ │ └── fixups.toml │ ├── axum │ │ └── fixups.toml │ ├── crossbeam-queue │ │ └── fixups.toml │ ├── crossbeam-utils │ │ └── fixups.toml │ ├── futures-channel │ │ └── fixups.toml │ ├── futures-core │ │ └── fixups.toml │ ├── futures-task │ │ └── fixups.toml │ ├── futures-util │ │ └── fixups.toml │ ├── generic-array │ │ └── fixups.toml │ ├── handlebars │ │ └── fixups.toml │ ├── httparse │ │ └── fixups.toml │ ├── indexmap │ │ └── fixups.toml │ ├── ipconfig │ │ └── fixups.toml │ ├── libc │ │ └── fixups.toml │ ├── libm │ │ └── fixups.toml │ ├── libsqlite3-sys │ │ └── fixups.toml │ ├── lock_api │ │ └── fixups.toml │ ├── mio │ │ └── fixups.toml │ ├── mongodb │ │ └── fixups.toml │ ├── multer │ │ └── fixups.toml │ ├── native-tls │ │ └── fixups.toml │ ├── num-bigint-dig │ │ └── fixups.toml │ ├── num-bigint │ │ └── fixups.toml │ ├── num-integer │ │ └── fixups.toml │ ├── num-iter │ │ └── fixups.toml │ ├── num-traits │ │ └── fixups.toml │ ├── opentelemetry-otlp │ │ └── fixups.toml │ ├── opentelemetry-proto │ │ └── fixups.toml │ ├── opentelemetry_sdk │ │ └── fixups.toml │ ├── parking_lot_core │ │ └── fixups.toml │ ├── paste │ │ └── fixups.toml │ ├── pest │ │ └── fixups.toml │ ├── prettyplease │ │ └── fixups.toml │ ├── proc-macro2 │ │ └── fixups.toml │ ├── psm │ │ └── fixups.toml │ ├── radium │ │ └── fixups.toml │ ├── reqwest │ │ └── fixups.toml │ ├── ring │ │ ├── fixups.toml │ │ └── include │ │ │ └── ring_core_generated │ │ │ ├── prefix_symbols.h │ │ │ ├── prefix_symbols_asm.h │ │ │ └── prefix_symbols_nasm.inc │ ├── rust-i18n │ │ └── fixups.toml │ ├── rust_decimal │ │ └── fixups.toml │ ├── rustc_version_runtime │ │ └── fixups.toml │ ├── rustix │ │ └── fixups.toml │ ├── rustls │ │ └── fixups.toml │ ├── rustversion │ │ └── fixups.toml │ ├── serde │ │ └── fixups.toml │ ├── serde_json │ │ └── fixups.toml │ ├── slab │ │ └── fixups.toml │ ├── stacker │ │ └── fixups.toml │ ├── syn │ │ └── fixups.toml │ ├── system-configuration-sys │ │ └── fixups.toml │ ├── thiserror │ │ └── fixups.toml │ ├── tonic │ │ └── fixups.toml │ ├── tracing-opentelemetry │ │ └── fixups.toml │ ├── tracing-subscriber │ │ └── fixups.toml │ ├── trust-dns-resolver │ │ └── fixups.toml │ ├── typenum │ │ └── fixups.toml │ ├── winapi-x86_64-pc-windows-gnu │ │ └── fixups.toml │ ├── winapi │ │ └── fixups.toml │ ├── windows_x86_64_gnu │ │ └── fixups.toml │ ├── windows_x86_64_msvc │ │ └── fixups.toml │ └── zerocopy │ │ └── fixups.toml │ ├── reindeer.toml │ └── top │ └── main.rs ├── toolchains ├── BUCK ├── rover │ ├── BUCK │ ├── generate_supergraph.py │ ├── macros.bzl │ ├── output_sdl.py │ └── toolchain.bzl ├── rust │ ├── BUCK │ ├── clippy_output.py │ ├── crate_context.py │ ├── macros.bzl │ ├── rustfmt_check.py │ └── toolchain.bzl ├── simple-pnpm │ ├── BUCK │ ├── build_node_modules.py │ ├── build_npm_bin.py │ ├── macros.bzl │ └── toolchain.bzl └── workspace-pnpm │ ├── BUCK │ ├── build_next_build.py │ ├── build_node_modules.py │ ├── build_npm_bin.py │ ├── build_workspace_node_modules.py │ ├── compile_typescript.py │ ├── graphql_codegen.py │ ├── macros.bzl │ ├── migrate_mongo_build_bin.py │ ├── package_next_bin.py │ ├── package_prod_tsc_build.py │ ├── package_prod_tsc_build_bin.py │ ├── prepare_package_context.py │ ├── run_audit.py │ ├── run_npm_test.py │ └── toolchain.bzl ├── typos.toml ├── vendir.lock.yml ├── vendir.yml └── vendir ├── BUCK ├── bin └── sync.sh ├── template.yml └── values.yml /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.buckconfig -------------------------------------------------------------------------------- /.buckroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.envrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/graphql-inspector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/graphql-inspector.yaml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/check-sdls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/workflows/check-sdls.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/workflows/e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/quickstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/workflows/quickstart.yml -------------------------------------------------------------------------------- /.github/workflows/spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.github/workflows/spelling.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/.gitignore -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/BUCK -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/README.md -------------------------------------------------------------------------------- /apps/admin-panel/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/.eslintrc.js -------------------------------------------------------------------------------- /apps/admin-panel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/.gitignore -------------------------------------------------------------------------------- /apps/admin-panel/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/.prettierignore -------------------------------------------------------------------------------- /apps/admin-panel/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/BUCK -------------------------------------------------------------------------------- /apps/admin-panel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/Dockerfile -------------------------------------------------------------------------------- /apps/admin-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/README.md -------------------------------------------------------------------------------- /apps/admin-panel/app/account/page.tsx: -------------------------------------------------------------------------------- 1 | export default async function Account() { 2 | return null 3 | } 4 | -------------------------------------------------------------------------------- /apps/admin-panel/app/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/env.ts -------------------------------------------------------------------------------- /apps/admin-panel/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/favicon.ico -------------------------------------------------------------------------------- /apps/admin-panel/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/globals.css -------------------------------------------------------------------------------- /apps/admin-panel/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/layout.tsx -------------------------------------------------------------------------------- /apps/admin-panel/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/page.tsx -------------------------------------------------------------------------------- /apps/admin-panel/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/types.ts -------------------------------------------------------------------------------- /apps/admin-panel/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/app/utils.ts -------------------------------------------------------------------------------- /apps/admin-panel/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/codegen.yml -------------------------------------------------------------------------------- /apps/admin-panel/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/generated.ts -------------------------------------------------------------------------------- /apps/admin-panel/graphql.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/graphql.gql -------------------------------------------------------------------------------- /apps/admin-panel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/jest.config.js -------------------------------------------------------------------------------- /apps/admin-panel/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/jest.setup.js -------------------------------------------------------------------------------- /apps/admin-panel/middleware.ts: -------------------------------------------------------------------------------- 1 | export { default } from "next-auth/middleware" 2 | -------------------------------------------------------------------------------- /apps/admin-panel/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/next.config.js -------------------------------------------------------------------------------- /apps/admin-panel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/package.json -------------------------------------------------------------------------------- /apps/admin-panel/prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/prettierrc.js -------------------------------------------------------------------------------- /apps/admin-panel/public/gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/public/gt.js -------------------------------------------------------------------------------- /apps/admin-panel/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/public/logo.png -------------------------------------------------------------------------------- /apps/admin-panel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/admin-panel/tsconfig.json -------------------------------------------------------------------------------- /apps/consent/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/.eslintrc.js -------------------------------------------------------------------------------- /apps/consent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/.gitignore -------------------------------------------------------------------------------- /apps/consent/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/.prettierrc.js -------------------------------------------------------------------------------- /apps/consent/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/BUCK -------------------------------------------------------------------------------- /apps/consent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/Dockerfile -------------------------------------------------------------------------------- /apps/consent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/README.md -------------------------------------------------------------------------------- /apps/consent/app/consent/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/consent/page.tsx -------------------------------------------------------------------------------- /apps/consent/app/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/error-handler.ts -------------------------------------------------------------------------------- /apps/consent/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/error.tsx -------------------------------------------------------------------------------- /apps/consent/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/favicon.ico -------------------------------------------------------------------------------- /apps/consent/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/globals.css -------------------------------------------------------------------------------- /apps/consent/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/layout.tsx -------------------------------------------------------------------------------- /apps/consent/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/loading.tsx -------------------------------------------------------------------------------- /apps/consent/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/login/page.tsx -------------------------------------------------------------------------------- /apps/consent/app/logout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/logout/page.tsx -------------------------------------------------------------------------------- /apps/consent/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/app/page.tsx -------------------------------------------------------------------------------- /apps/consent/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/codegen.yml -------------------------------------------------------------------------------- /apps/consent/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/cypress.config.ts -------------------------------------------------------------------------------- /apps/consent/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/env.ts -------------------------------------------------------------------------------- /apps/consent/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/instrumentation.ts -------------------------------------------------------------------------------- /apps/consent/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/next.config.js -------------------------------------------------------------------------------- /apps/consent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/package.json -------------------------------------------------------------------------------- /apps/consent/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/postcss.config.js -------------------------------------------------------------------------------- /apps/consent/public/gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/public/gt.js -------------------------------------------------------------------------------- /apps/consent/script.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/script.log -------------------------------------------------------------------------------- /apps/consent/services/hydra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/services/hydra.ts -------------------------------------------------------------------------------- /apps/consent/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/tailwind.config.ts -------------------------------------------------------------------------------- /apps/consent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/consent/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/.eslintrc.js -------------------------------------------------------------------------------- /apps/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/.gitignore -------------------------------------------------------------------------------- /apps/dashboard/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/.prettierrc.js -------------------------------------------------------------------------------- /apps/dashboard/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/BUCK -------------------------------------------------------------------------------- /apps/dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/Dockerfile -------------------------------------------------------------------------------- /apps/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/README.md -------------------------------------------------------------------------------- /apps/dashboard/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/favicon.ico -------------------------------------------------------------------------------- /apps/dashboard/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/globals.css -------------------------------------------------------------------------------- /apps/dashboard/app/index.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/index.types.ts -------------------------------------------------------------------------------- /apps/dashboard/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/layout.tsx -------------------------------------------------------------------------------- /apps/dashboard/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/loading.tsx -------------------------------------------------------------------------------- /apps/dashboard/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/page.tsx -------------------------------------------------------------------------------- /apps/dashboard/app/transactions/transactions.types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/app/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/url.ts -------------------------------------------------------------------------------- /apps/dashboard/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/app/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/codegen.yml -------------------------------------------------------------------------------- /apps/dashboard/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/cypress.config.ts -------------------------------------------------------------------------------- /apps/dashboard/dev/get-btc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/dev/get-btc.sh -------------------------------------------------------------------------------- /apps/dashboard/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/env.ts -------------------------------------------------------------------------------- /apps/dashboard/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/instrumentation.ts -------------------------------------------------------------------------------- /apps/dashboard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/jest.config.ts -------------------------------------------------------------------------------- /apps/dashboard/lib/index.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/lib/index.types.ts -------------------------------------------------------------------------------- /apps/dashboard/middleware.ts: -------------------------------------------------------------------------------- 1 | export { default } from "next-auth/middleware" 2 | -------------------------------------------------------------------------------- /apps/dashboard/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/next.config.js -------------------------------------------------------------------------------- /apps/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/package.json -------------------------------------------------------------------------------- /apps/dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/postcss.config.js -------------------------------------------------------------------------------- /apps/dashboard/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/tailwind.config.ts -------------------------------------------------------------------------------- /apps/dashboard/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/theme/theme.ts -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/dashboard/tsconfig.json -------------------------------------------------------------------------------- /apps/map/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /apps/map/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/.gitignore -------------------------------------------------------------------------------- /apps/map/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/BUCK -------------------------------------------------------------------------------- /apps/map/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/Dockerfile -------------------------------------------------------------------------------- /apps/map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/README.md -------------------------------------------------------------------------------- /apps/map/app/api/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/api/health/route.ts -------------------------------------------------------------------------------- /apps/map/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/favicon.ico -------------------------------------------------------------------------------- /apps/map/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/globals.css -------------------------------------------------------------------------------- /apps/map/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/layout.tsx -------------------------------------------------------------------------------- /apps/map/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/page.tsx -------------------------------------------------------------------------------- /apps/map/app/server-acton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/server-acton.ts -------------------------------------------------------------------------------- /apps/map/app/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/tracing.ts -------------------------------------------------------------------------------- /apps/map/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/app/utils.ts -------------------------------------------------------------------------------- /apps/map/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/codegen.yml -------------------------------------------------------------------------------- /apps/map/components/map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/components/map/index.tsx -------------------------------------------------------------------------------- /apps/map/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/components/utils.ts -------------------------------------------------------------------------------- /apps/map/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/env.ts -------------------------------------------------------------------------------- /apps/map/instrumentation.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/instrumentation.node.ts -------------------------------------------------------------------------------- /apps/map/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/instrumentation.ts -------------------------------------------------------------------------------- /apps/map/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/next-env.d.ts -------------------------------------------------------------------------------- /apps/map/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/next.config.js -------------------------------------------------------------------------------- /apps/map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/package.json -------------------------------------------------------------------------------- /apps/map/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/postcss.config.js -------------------------------------------------------------------------------- /apps/map/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/prettier.config.js -------------------------------------------------------------------------------- /apps/map/prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/prettierrc.js -------------------------------------------------------------------------------- /apps/map/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/public/logo.svg -------------------------------------------------------------------------------- /apps/map/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/tailwind.config.ts -------------------------------------------------------------------------------- /apps/map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/map/tsconfig.json -------------------------------------------------------------------------------- /apps/pay/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/.eslintrc.js -------------------------------------------------------------------------------- /apps/pay/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/.gitignore -------------------------------------------------------------------------------- /apps/pay/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/.prettierignore -------------------------------------------------------------------------------- /apps/pay/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/.prettierrc.js -------------------------------------------------------------------------------- /apps/pay/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/BUCK -------------------------------------------------------------------------------- /apps/pay/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/Dockerfile -------------------------------------------------------------------------------- /apps/pay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/README.md -------------------------------------------------------------------------------- /apps/pay/app/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/[username]/page.tsx -------------------------------------------------------------------------------- /apps/pay/app/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/checkout/route.ts -------------------------------------------------------------------------------- /apps/pay/app/currency-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/currency-metadata.ts -------------------------------------------------------------------------------- /apps/pay/app/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/error/page.tsx -------------------------------------------------------------------------------- /apps/pay/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/favicon.ico -------------------------------------------------------------------------------- /apps/pay/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/globals.css -------------------------------------------------------------------------------- /apps/pay/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/layout.tsx -------------------------------------------------------------------------------- /apps/pay/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/manifest.ts -------------------------------------------------------------------------------- /apps/pay/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/page.tsx -------------------------------------------------------------------------------- /apps/pay/app/reducer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/reducer.tsx -------------------------------------------------------------------------------- /apps/pay/app/setuppwa/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/setuppwa/page.tsx -------------------------------------------------------------------------------- /apps/pay/app/ssr-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/app/ssr-client.ts -------------------------------------------------------------------------------- /apps/pay/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/codegen.yml -------------------------------------------------------------------------------- /apps/pay/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/components/utils.ts -------------------------------------------------------------------------------- /apps/pay/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/config/config.ts -------------------------------------------------------------------------------- /apps/pay/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/cypress.config.ts -------------------------------------------------------------------------------- /apps/pay/cypress/e2e/home.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/cypress/e2e/home.cy.ts -------------------------------------------------------------------------------- /apps/pay/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/cypress/support/e2e.ts -------------------------------------------------------------------------------- /apps/pay/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/env.ts -------------------------------------------------------------------------------- /apps/pay/hooks/use-sat-price.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/hooks/use-sat-price.tsx -------------------------------------------------------------------------------- /apps/pay/instrumentation.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/instrumentation.node.ts -------------------------------------------------------------------------------- /apps/pay/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/instrumentation.ts -------------------------------------------------------------------------------- /apps/pay/lib/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/lib/download.ts -------------------------------------------------------------------------------- /apps/pay/lib/graphql/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/lib/graphql/generated.ts -------------------------------------------------------------------------------- /apps/pay/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/lib/logger.ts -------------------------------------------------------------------------------- /apps/pay/lib/utils/date-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/lib/utils/date-util.ts -------------------------------------------------------------------------------- /apps/pay/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/lib/utils/index.ts -------------------------------------------------------------------------------- /apps/pay/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/middleware.ts -------------------------------------------------------------------------------- /apps/pay/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/next.config.js -------------------------------------------------------------------------------- /apps/pay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/package.json -------------------------------------------------------------------------------- /apps/pay/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/postcss.config.js -------------------------------------------------------------------------------- /apps/pay/public/APPLE-ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/APPLE-ICON.png -------------------------------------------------------------------------------- /apps/pay/public/BBLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/BBLogo.png -------------------------------------------------------------------------------- /apps/pay/public/BBQRLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/BBQRLogo.png -------------------------------------------------------------------------------- /apps/pay/public/BBW-QRLOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/BBW-QRLOGO.png -------------------------------------------------------------------------------- /apps/pay/public/BlinkPOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/BlinkPOS.svg -------------------------------------------------------------------------------- /apps/pay/public/QRLOGO-BBW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/QRLOGO-BBW.png -------------------------------------------------------------------------------- /apps/pay/public/blink-qr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/blink-qr-logo.png -------------------------------------------------------------------------------- /apps/pay/public/blue-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/blue-wallet.png -------------------------------------------------------------------------------- /apps/pay/public/breez-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/breez-logo.png -------------------------------------------------------------------------------- /apps/pay/public/confetti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/confetti.svg -------------------------------------------------------------------------------- /apps/pay/public/icon-POS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/icon-POS.png -------------------------------------------------------------------------------- /apps/pay/public/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/icons/close.svg -------------------------------------------------------------------------------- /apps/pay/public/icons/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/icons/log-out.svg -------------------------------------------------------------------------------- /apps/pay/public/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/icons/logout.svg -------------------------------------------------------------------------------- /apps/pay/public/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/icons/pencil.svg -------------------------------------------------------------------------------- /apps/pay/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/manifest.json -------------------------------------------------------------------------------- /apps/pay/public/muun-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/muun-logo.png -------------------------------------------------------------------------------- /apps/pay/public/payment-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/payment-sound.mp3 -------------------------------------------------------------------------------- /apps/pay/public/pheonix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/public/pheonix-logo.png -------------------------------------------------------------------------------- /apps/pay/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/tailwind.config.ts -------------------------------------------------------------------------------- /apps/pay/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/pay/tsconfig.json -------------------------------------------------------------------------------- /apps/voucher/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/.eslintrc.js -------------------------------------------------------------------------------- /apps/voucher/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/.eslintrc.json -------------------------------------------------------------------------------- /apps/voucher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/.gitignore -------------------------------------------------------------------------------- /apps/voucher/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/.prettierrc.js -------------------------------------------------------------------------------- /apps/voucher/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/BUCK -------------------------------------------------------------------------------- /apps/voucher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/Dockerfile -------------------------------------------------------------------------------- /apps/voucher/app/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/create/page.tsx -------------------------------------------------------------------------------- /apps/voucher/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/favicon.ico -------------------------------------------------------------------------------- /apps/voucher/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/globals.css -------------------------------------------------------------------------------- /apps/voucher/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/layout.tsx -------------------------------------------------------------------------------- /apps/voucher/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/loading.tsx -------------------------------------------------------------------------------- /apps/voucher/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/manifest.ts -------------------------------------------------------------------------------- /apps/voucher/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/page.tsx -------------------------------------------------------------------------------- /apps/voucher/app/redeem/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/app/redeem/page.tsx -------------------------------------------------------------------------------- /apps/voucher/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/codegen.yml -------------------------------------------------------------------------------- /apps/voucher/components/bold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/components/bold.tsx -------------------------------------------------------------------------------- /apps/voucher/components/button/button.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/voucher/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/components/input.tsx -------------------------------------------------------------------------------- /apps/voucher/components/nav-bar/nav-bar.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/voucher/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/components/utils.ts -------------------------------------------------------------------------------- /apps/voucher/config/apollo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/config/apollo.tsx -------------------------------------------------------------------------------- /apps/voucher/config/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/config/appConfig.ts -------------------------------------------------------------------------------- /apps/voucher/config/jest.setup.js: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom/extend-expect"; 2 | -------------------------------------------------------------------------------- /apps/voucher/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/cypress.config.ts -------------------------------------------------------------------------------- /apps/voucher/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/env.ts -------------------------------------------------------------------------------- /apps/voucher/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/graphql/schema.ts -------------------------------------------------------------------------------- /apps/voucher/hooks/useSatsPrice.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/voucher/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/instrumentation.ts -------------------------------------------------------------------------------- /apps/voucher/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/jest.config.ts -------------------------------------------------------------------------------- /apps/voucher/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/lib/utils.ts -------------------------------------------------------------------------------- /apps/voucher/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/middleware.ts -------------------------------------------------------------------------------- /apps/voucher/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/next.config.js -------------------------------------------------------------------------------- /apps/voucher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/package.json -------------------------------------------------------------------------------- /apps/voucher/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/postcss.config.js -------------------------------------------------------------------------------- /apps/voucher/public/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/public/copy.svg -------------------------------------------------------------------------------- /apps/voucher/public/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/public/print.svg -------------------------------------------------------------------------------- /apps/voucher/public/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/public/share.svg -------------------------------------------------------------------------------- /apps/voucher/services/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/services/db/index.ts -------------------------------------------------------------------------------- /apps/voucher/services/db/knex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/services/db/knex.ts -------------------------------------------------------------------------------- /apps/voucher/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/tailwind.config.ts -------------------------------------------------------------------------------- /apps/voucher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/tsconfig.json -------------------------------------------------------------------------------- /apps/voucher/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/apps/voucher/utils/helpers.ts -------------------------------------------------------------------------------- /architecture.iuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/architecture.iuml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/babel.config.js -------------------------------------------------------------------------------- /bats/ci_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/ci_run.sh -------------------------------------------------------------------------------- /bats/ci_setup_suite.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/ci_setup_suite.bash -------------------------------------------------------------------------------- /bats/core/api-keys/api-keys.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api-keys/api-keys.bats -------------------------------------------------------------------------------- /bats/core/api/account.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/account.bats -------------------------------------------------------------------------------- /bats/core/api/admin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/admin.bats -------------------------------------------------------------------------------- /bats/core/api/auth.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/auth.bats -------------------------------------------------------------------------------- /bats/core/api/callback.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/callback.bats -------------------------------------------------------------------------------- /bats/core/api/cron.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/cron.bats -------------------------------------------------------------------------------- /bats/core/api/device-account.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/device-account.bats -------------------------------------------------------------------------------- /bats/core/api/invoices.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/invoices.bats -------------------------------------------------------------------------------- /bats/core/api/ln-receive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/ln-receive.bats -------------------------------------------------------------------------------- /bats/core/api/ln-send.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/ln-send.bats -------------------------------------------------------------------------------- /bats/core/api/lnurl-send.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/lnurl-send.bats -------------------------------------------------------------------------------- /bats/core/api/merchant.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/merchant.bats -------------------------------------------------------------------------------- /bats/core/api/oathkeeper.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/oathkeeper.bats -------------------------------------------------------------------------------- /bats/core/api/onchain-send.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/onchain-send.bats -------------------------------------------------------------------------------- /bats/core/api/public.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/public.bats -------------------------------------------------------------------------------- /bats/core/api/quiz.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/quiz.bats -------------------------------------------------------------------------------- /bats/core/api/support.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/support.bats -------------------------------------------------------------------------------- /bats/core/api/transactions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/transactions.bats -------------------------------------------------------------------------------- /bats/core/api/trigger.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/trigger.bats -------------------------------------------------------------------------------- /bats/core/api/user.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/core/api/user.bats -------------------------------------------------------------------------------- /bats/gql/account-delete.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/account-delete.gql -------------------------------------------------------------------------------- /bats/gql/account-details.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/account-details.gql -------------------------------------------------------------------------------- /bats/gql/account-limits.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/account-limits.gql -------------------------------------------------------------------------------- /bats/gql/api-key-create.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/api-key-create.gql -------------------------------------------------------------------------------- /bats/gql/api-keys.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/api-keys.gql -------------------------------------------------------------------------------- /bats/gql/authorization.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/authorization.gql -------------------------------------------------------------------------------- /bats/gql/business-map-markers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/business-map-markers.gql -------------------------------------------------------------------------------- /bats/gql/contacts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/contacts.gql -------------------------------------------------------------------------------- /bats/gql/default-account.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/default-account.gql -------------------------------------------------------------------------------- /bats/gql/globals.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/globals.gql -------------------------------------------------------------------------------- /bats/gql/identity.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/identity.gql -------------------------------------------------------------------------------- /bats/gql/invoices-by-wallet.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/invoices-by-wallet.gql -------------------------------------------------------------------------------- /bats/gql/invoices.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/invoices.gql -------------------------------------------------------------------------------- /bats/gql/ln-invoice-cancel.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/ln-invoice-cancel.gql -------------------------------------------------------------------------------- /bats/gql/ln-invoice-create.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/ln-invoice-create.gql -------------------------------------------------------------------------------- /bats/gql/ln-invoice-fee-probe.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/ln-invoice-fee-probe.gql -------------------------------------------------------------------------------- /bats/gql/lnurl-payment-send.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/lnurl-payment-send.gql -------------------------------------------------------------------------------- /bats/gql/logout.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/logout.gql -------------------------------------------------------------------------------- /bats/gql/merchant-map-suggest.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/merchant-map-suggest.gql -------------------------------------------------------------------------------- /bats/gql/my-updates-sub.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/my-updates-sub.gql -------------------------------------------------------------------------------- /bats/gql/on-chain-tx-fee.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/on-chain-tx-fee.gql -------------------------------------------------------------------------------- /bats/gql/on-chain-usd-tx-fee.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/on-chain-usd-tx-fee.gql -------------------------------------------------------------------------------- /bats/gql/price-sub.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/price-sub.gql -------------------------------------------------------------------------------- /bats/gql/quiz-claim.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/quiz-claim.gql -------------------------------------------------------------------------------- /bats/gql/quiz-question.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/quiz-question.gql -------------------------------------------------------------------------------- /bats/gql/quiz.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/quiz.gql -------------------------------------------------------------------------------- /bats/gql/real-time-price-sub.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/real-time-price-sub.gql -------------------------------------------------------------------------------- /bats/gql/real-time-price.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/real-time-price.gql -------------------------------------------------------------------------------- /bats/gql/revoke-api-key.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/revoke-api-key.gql -------------------------------------------------------------------------------- /bats/gql/support-chat-reset.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/support-chat-reset.gql -------------------------------------------------------------------------------- /bats/gql/support-chat.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/support-chat.gql -------------------------------------------------------------------------------- /bats/gql/transactions.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/transactions.gql -------------------------------------------------------------------------------- /bats/gql/user-details.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-details.gql -------------------------------------------------------------------------------- /bats/gql/user-email-delete.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-email-delete.gql -------------------------------------------------------------------------------- /bats/gql/user-login-upgrade.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-login-upgrade.gql -------------------------------------------------------------------------------- /bats/gql/user-login.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-login.gql -------------------------------------------------------------------------------- /bats/gql/user-phone-delete.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-phone-delete.gql -------------------------------------------------------------------------------- /bats/gql/user-totp-delete.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-totp-delete.gql -------------------------------------------------------------------------------- /bats/gql/user-update-language.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-update-language.gql -------------------------------------------------------------------------------- /bats/gql/user-update-username.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/user-update-username.gql -------------------------------------------------------------------------------- /bats/gql/username-available.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/username-available.gql -------------------------------------------------------------------------------- /bats/gql/wallets-for-account.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/gql/wallets-for-account.gql -------------------------------------------------------------------------------- /bats/helpers/_common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/_common.bash -------------------------------------------------------------------------------- /bats/helpers/admin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/admin.bash -------------------------------------------------------------------------------- /bats/helpers/bankowner.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/bankowner.bash -------------------------------------------------------------------------------- /bats/helpers/callback.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/callback.bash -------------------------------------------------------------------------------- /bats/helpers/callback/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/callback/BUCK -------------------------------------------------------------------------------- /bats/helpers/callback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/callback/index.ts -------------------------------------------------------------------------------- /bats/helpers/callback/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /bats/helpers/cli.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/cli.bash -------------------------------------------------------------------------------- /bats/helpers/intraledger.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/intraledger.bash -------------------------------------------------------------------------------- /bats/helpers/ledger.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/ledger.bash -------------------------------------------------------------------------------- /bats/helpers/ln.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/ln.bash -------------------------------------------------------------------------------- /bats/helpers/onchain.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/onchain.bash -------------------------------------------------------------------------------- /bats/helpers/subscriber.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/subscriber.bash -------------------------------------------------------------------------------- /bats/helpers/subscriber/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/subscriber/BUCK -------------------------------------------------------------------------------- /bats/helpers/subscriber/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /bats/helpers/telegram.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/telegram.bash -------------------------------------------------------------------------------- /bats/helpers/totp/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/totp/BUCK -------------------------------------------------------------------------------- /bats/helpers/totp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/totp/package.json -------------------------------------------------------------------------------- /bats/helpers/totp/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /bats/helpers/trigger.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/trigger.bash -------------------------------------------------------------------------------- /bats/helpers/user.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/user.bash -------------------------------------------------------------------------------- /bats/helpers/wallet.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/bats/helpers/wallet.bash -------------------------------------------------------------------------------- /ci/apps/app-template.lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/app-template.lib.yml -------------------------------------------------------------------------------- /ci/apps/image/Dockerfile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ci/apps/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/pipeline.yml -------------------------------------------------------------------------------- /ci/apps/repipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/repipe -------------------------------------------------------------------------------- /ci/apps/tasks/buck-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/tasks/buck-task.sh -------------------------------------------------------------------------------- /ci/apps/tasks/open-charts-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/tasks/open-charts-pr.sh -------------------------------------------------------------------------------- /ci/apps/tasks/run-on-nix-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/tasks/run-on-nix-host.sh -------------------------------------------------------------------------------- /ci/apps/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/apps/values.yml -------------------------------------------------------------------------------- /ci/config/vendor/git-cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/config/vendor/git-cliff.toml -------------------------------------------------------------------------------- /ci/core/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/pipeline.yml -------------------------------------------------------------------------------- /ci/core/repipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/repipe -------------------------------------------------------------------------------- /ci/core/tasks/buck-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/tasks/buck-task.sh -------------------------------------------------------------------------------- /ci/core/tasks/open-charts-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/tasks/open-charts-pr.sh -------------------------------------------------------------------------------- /ci/core/tasks/prep-quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/tasks/prep-quickstart.sh -------------------------------------------------------------------------------- /ci/core/tasks/run-on-nix-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/tasks/run-on-nix-host.sh -------------------------------------------------------------------------------- /ci/core/tasks/sync-proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/tasks/sync-proto.sh -------------------------------------------------------------------------------- /ci/core/template.lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/template.lib.yml -------------------------------------------------------------------------------- /ci/core/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/core/values.yml -------------------------------------------------------------------------------- /ci/vendir.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/vendir.lock.yml -------------------------------------------------------------------------------- /ci/vendir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/vendir.yml -------------------------------------------------------------------------------- /ci/vendor/config/git-cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/vendor/config/git-cliff.toml -------------------------------------------------------------------------------- /ci/vendor/tasks/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/vendor/tasks/helpers.sh -------------------------------------------------------------------------------- /ci/vendor/tasks/nodejs-audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/ci/vendor/tasks/nodejs-audit.sh -------------------------------------------------------------------------------- /core/api-cron/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-cron/BUCK -------------------------------------------------------------------------------- /core/api-cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-cron/Dockerfile -------------------------------------------------------------------------------- /core/api-exporter/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-exporter/BUCK -------------------------------------------------------------------------------- /core/api-exporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-exporter/Dockerfile -------------------------------------------------------------------------------- /core/api-keys/.env: -------------------------------------------------------------------------------- 1 | DATABASE_URL=postgres://user:password@localhost:5431/pg 2 | -------------------------------------------------------------------------------- /core/api-keys/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/BUCK -------------------------------------------------------------------------------- /core/api-keys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/Cargo.toml -------------------------------------------------------------------------------- /core/api-keys/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/Dockerfile -------------------------------------------------------------------------------- /core/api-keys/api-keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/api-keys.yml -------------------------------------------------------------------------------- /core/api-keys/src/app/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/app/config.rs -------------------------------------------------------------------------------- /core/api-keys/src/app/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/app/error.rs -------------------------------------------------------------------------------- /core/api-keys/src/app/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/app/mod.rs -------------------------------------------------------------------------------- /core/api-keys/src/cli/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/cli/config.rs -------------------------------------------------------------------------------- /core/api-keys/src/cli/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/cli/db.rs -------------------------------------------------------------------------------- /core/api-keys/src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/cli/mod.rs -------------------------------------------------------------------------------- /core/api-keys/src/graphql/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/graphql/mod.rs -------------------------------------------------------------------------------- /core/api-keys/src/identity/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/identity/mod.rs -------------------------------------------------------------------------------- /core/api-keys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/lib.rs -------------------------------------------------------------------------------- /core/api-keys/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/main.rs -------------------------------------------------------------------------------- /core/api-keys/src/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/scope.rs -------------------------------------------------------------------------------- /core/api-keys/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-keys/src/server/mod.rs -------------------------------------------------------------------------------- /core/api-trigger/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-trigger/BUCK -------------------------------------------------------------------------------- /core/api-trigger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-trigger/Dockerfile -------------------------------------------------------------------------------- /core/api-ws-server/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-ws-server/BUCK -------------------------------------------------------------------------------- /core/api-ws-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api-ws-server/Dockerfile -------------------------------------------------------------------------------- /core/api/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/.envrc -------------------------------------------------------------------------------- /core/api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/.eslintrc.js -------------------------------------------------------------------------------- /core/api/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | result 3 | -------------------------------------------------------------------------------- /core/api/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/.prettierignore -------------------------------------------------------------------------------- /core/api/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/BUCK -------------------------------------------------------------------------------- /core/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/Dockerfile -------------------------------------------------------------------------------- /core/api/Dockerfile-migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/Dockerfile-migrate -------------------------------------------------------------------------------- /core/api/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/eslint.config.js -------------------------------------------------------------------------------- /core/api/galoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/galoy.yaml -------------------------------------------------------------------------------- /core/api/junit.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/package.json -------------------------------------------------------------------------------- /core/api/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/prettier.config.js -------------------------------------------------------------------------------- /core/api/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/public/logo.png -------------------------------------------------------------------------------- /core/api/spectaql/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/spectaql/TUTORIAL.md -------------------------------------------------------------------------------- /core/api/src/app/admin/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/admin/backup.ts -------------------------------------------------------------------------------- /core/api/src/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/admin/index.ts -------------------------------------------------------------------------------- /core/api/src/app/captcha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/captcha/index.ts -------------------------------------------------------------------------------- /core/api/src/app/comm/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./submit-feedback" 2 | -------------------------------------------------------------------------------- /core/api/src/app/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/errors.ts -------------------------------------------------------------------------------- /core/api/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/index.ts -------------------------------------------------------------------------------- /core/api/src/app/index.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/index.types.d.ts -------------------------------------------------------------------------------- /core/api/src/app/prices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/prices/index.ts -------------------------------------------------------------------------------- /core/api/src/app/quiz/claim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/quiz/claim.ts -------------------------------------------------------------------------------- /core/api/src/app/quiz/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/quiz/index.ts -------------------------------------------------------------------------------- /core/api/src/app/quiz/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/quiz/list.ts -------------------------------------------------------------------------------- /core/api/src/app/support/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/support/chat.ts -------------------------------------------------------------------------------- /core/api/src/app/support/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./chat" 2 | -------------------------------------------------------------------------------- /core/api/src/app/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/users/index.ts -------------------------------------------------------------------------------- /core/api/src/app/wallets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/app/wallets/index.ts -------------------------------------------------------------------------------- /core/api/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/env.ts -------------------------------------------------------------------------------- /core/api/src/config/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/error.ts -------------------------------------------------------------------------------- /core/api/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/index.ts -------------------------------------------------------------------------------- /core/api/src/config/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/schema.ts -------------------------------------------------------------------------------- /core/api/src/config/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/types.d.ts -------------------------------------------------------------------------------- /core/api/src/config/yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/config/yaml.ts -------------------------------------------------------------------------------- /core/api/src/debug/reimburse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/debug/reimburse.ts -------------------------------------------------------------------------------- /core/api/src/debug/reset-totp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/debug/reset-totp.ts -------------------------------------------------------------------------------- /core/api/src/debug/text-sms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/debug/text-sms.ts -------------------------------------------------------------------------------- /core/api/src/domain/bitcoin/lightning/invoices.d.ts: -------------------------------------------------------------------------------- 1 | declare module "invoices" 2 | -------------------------------------------------------------------------------- /core/api/src/domain/dealer-price/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./errors" 2 | -------------------------------------------------------------------------------- /core/api/src/domain/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/domain/errors.ts -------------------------------------------------------------------------------- /core/api/src/domain/fiat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/domain/fiat/index.ts -------------------------------------------------------------------------------- /core/api/src/domain/ipfetcher/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./errors" 2 | -------------------------------------------------------------------------------- /core/api/src/domain/kratos/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./errors" 2 | -------------------------------------------------------------------------------- /core/api/src/domain/lock/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./errors" 2 | -------------------------------------------------------------------------------- /core/api/src/domain/quiz/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/domain/quiz/index.ts -------------------------------------------------------------------------------- /core/api/src/domain/sms-templates/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./welcome" 2 | -------------------------------------------------------------------------------- /core/api/src/graphql/error-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/graphql/error-map.ts -------------------------------------------------------------------------------- /core/api/src/graphql/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/graphql/error.ts -------------------------------------------------------------------------------- /core/api/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/graphql/index.ts -------------------------------------------------------------------------------- /core/api/src/servers/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/cron.ts -------------------------------------------------------------------------------- /core/api/src/servers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/errors.ts -------------------------------------------------------------------------------- /core/api/src/servers/exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/exporter.ts -------------------------------------------------------------------------------- /core/api/src/servers/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/trigger.ts -------------------------------------------------------------------------------- /core/api/src/servers/write-sdl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/write-sdl.ts -------------------------------------------------------------------------------- /core/api/src/servers/ws-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/servers/ws-server.ts -------------------------------------------------------------------------------- /core/api/src/services/dealer-price/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dealer-price" 2 | -------------------------------------------------------------------------------- /core/api/src/services/geetest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/services/geetest.ts -------------------------------------------------------------------------------- /core/api/src/services/ledger/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./transactions-metadata" 2 | -------------------------------------------------------------------------------- /core/api/src/services/ln-service.d.ts: -------------------------------------------------------------------------------- 1 | declare module "ln-service" 2 | -------------------------------------------------------------------------------- /core/api/src/services/lnd/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/services/lnd/auth.ts -------------------------------------------------------------------------------- /core/api/src/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/services/logger.ts -------------------------------------------------------------------------------- /core/api/src/services/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/services/pubsub.ts -------------------------------------------------------------------------------- /core/api/src/services/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/services/tracing.ts -------------------------------------------------------------------------------- /core/api/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/src/utils/index.ts -------------------------------------------------------------------------------- /core/api/test/helpers/bitcoind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/bitcoind.ts -------------------------------------------------------------------------------- /core/api/test/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/index.ts -------------------------------------------------------------------------------- /core/api/test/helpers/kratos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/kratos.ts -------------------------------------------------------------------------------- /core/api/test/helpers/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/ledger.ts -------------------------------------------------------------------------------- /core/api/test/helpers/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/price.ts -------------------------------------------------------------------------------- /core/api/test/helpers/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/random.ts -------------------------------------------------------------------------------- /core/api/test/helpers/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/shared.ts -------------------------------------------------------------------------------- /core/api/test/helpers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/user.ts -------------------------------------------------------------------------------- /core/api/test/helpers/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/helpers/wallet.ts -------------------------------------------------------------------------------- /core/api/test/swc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/swc-config.json -------------------------------------------------------------------------------- /core/api/test/unit/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/unit/config.spec.ts -------------------------------------------------------------------------------- /core/api/test/unit/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/test/unit/jest.config.js -------------------------------------------------------------------------------- /core/api/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/tsconfig-build.json -------------------------------------------------------------------------------- /core/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/api/tsconfig.json -------------------------------------------------------------------------------- /core/notifications/.env: -------------------------------------------------------------------------------- 1 | DATABASE_URL=postgres://user:password@localhost:5433/pg 2 | -------------------------------------------------------------------------------- /core/notifications/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/BUCK -------------------------------------------------------------------------------- /core/notifications/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/Cargo.toml -------------------------------------------------------------------------------- /core/notifications/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/Dockerfile -------------------------------------------------------------------------------- /core/notifications/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/build.rs -------------------------------------------------------------------------------- /core/notifications/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/ca.yml -------------------------------------------------------------------------------- /core/notifications/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/de.yml -------------------------------------------------------------------------------- /core/notifications/locales/el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/el.yml -------------------------------------------------------------------------------- /core/notifications/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/en.yml -------------------------------------------------------------------------------- /core/notifications/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/es.yml -------------------------------------------------------------------------------- /core/notifications/locales/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/hu.yml -------------------------------------------------------------------------------- /core/notifications/locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/ro.yml -------------------------------------------------------------------------------- /core/notifications/locales/sw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/locales/sw.yml -------------------------------------------------------------------------------- /core/notifications/migrations/20240417091715_add_stateful_notifications.down.sql: -------------------------------------------------------------------------------- 1 | -- Add down migration script here 2 | -------------------------------------------------------------------------------- /core/notifications/src/app/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/app/mod.rs -------------------------------------------------------------------------------- /core/notifications/src/cli/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/cli/db.rs -------------------------------------------------------------------------------- /core/notifications/src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/cli/mod.rs -------------------------------------------------------------------------------- /core/notifications/src/job/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/job/mod.rs -------------------------------------------------------------------------------- /core/notifications/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/lib.rs -------------------------------------------------------------------------------- /core/notifications/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/src/main.rs -------------------------------------------------------------------------------- /core/notifications/transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/core/notifications/transifex.yml -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/.gitignore -------------------------------------------------------------------------------- /dev/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/BUCK -------------------------------------------------------------------------------- /dev/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/Tiltfile -------------------------------------------------------------------------------- /dev/bin/check-quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/check-quickstart.sh -------------------------------------------------------------------------------- /dev/bin/fund-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/fund-user.sh -------------------------------------------------------------------------------- /dev/bin/get-kratos-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/get-kratos-code.sh -------------------------------------------------------------------------------- /dev/bin/init-lightning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/init-lightning.sh -------------------------------------------------------------------------------- /dev/bin/init-onchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/init-onchain.sh -------------------------------------------------------------------------------- /dev/bin/init-test-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/init-test-user.sh -------------------------------------------------------------------------------- /dev/bin/run-stoppable-trigger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/run-stoppable-trigger.sh -------------------------------------------------------------------------------- /dev/bin/setup-hydra-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/setup-hydra-client.sh -------------------------------------------------------------------------------- /dev/bin/setup-voucher-escrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/setup-voucher-escrow.sh -------------------------------------------------------------------------------- /dev/bin/tilt-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/tilt-ci.sh -------------------------------------------------------------------------------- /dev/bin/update-schemas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/bin/update-schemas.sh -------------------------------------------------------------------------------- /dev/config/bitcoind/bitcoin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/bitcoind/bitcoin.conf -------------------------------------------------------------------------------- /dev/config/bria.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/bria.yml -------------------------------------------------------------------------------- /dev/config/fulcrum/fulcrum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/fulcrum/fulcrum.conf -------------------------------------------------------------------------------- /dev/config/fulcrum/tls.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/fulcrum/tls.cert -------------------------------------------------------------------------------- /dev/config/fulcrum/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/fulcrum/tls.key -------------------------------------------------------------------------------- /dev/config/lnd/lnd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/lnd/lnd.conf -------------------------------------------------------------------------------- /dev/config/lnd/tls.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/lnd/tls.cert -------------------------------------------------------------------------------- /dev/config/lnd/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/lnd/tls.key -------------------------------------------------------------------------------- /dev/config/ory/body.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/ory/body.jsonnet -------------------------------------------------------------------------------- /dev/config/ory/hydra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/ory/hydra.yml -------------------------------------------------------------------------------- /dev/config/ory/jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/ory/jwks.json -------------------------------------------------------------------------------- /dev/config/ory/kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/ory/kratos.yml -------------------------------------------------------------------------------- /dev/config/ory/oathkeeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/ory/oathkeeper.yml -------------------------------------------------------------------------------- /dev/config/otel-agent-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/otel-agent-config.yaml -------------------------------------------------------------------------------- /dev/config/price.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/price.yml -------------------------------------------------------------------------------- /dev/config/stablesats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/config/stablesats.yml -------------------------------------------------------------------------------- /dev/core-bundle/dummy-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/core-bundle/dummy-env.json -------------------------------------------------------------------------------- /dev/core-bundle/serve-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/core-bundle/serve-env.json -------------------------------------------------------------------------------- /dev/docker-compose.deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/docker-compose.deps.yml -------------------------------------------------------------------------------- /dev/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/healthcheck.py -------------------------------------------------------------------------------- /dev/helpers/auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/helpers/auth.sh -------------------------------------------------------------------------------- /dev/helpers/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/helpers/cli.sh -------------------------------------------------------------------------------- /dev/helpers/gql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/helpers/gql.sh -------------------------------------------------------------------------------- /dev/helpers/gql/transactions.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/helpers/gql/transactions.gql -------------------------------------------------------------------------------- /dev/helpers/onchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/helpers/onchain.sh -------------------------------------------------------------------------------- /dev/tilt.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/dev/tilt.bzl -------------------------------------------------------------------------------- /docs/BUCK2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/BUCK2.md -------------------------------------------------------------------------------- /docs/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/CI.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT_ENVIRONMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/DEVELOPMENT_ENVIRONMENT.md -------------------------------------------------------------------------------- /docs/LEGACY_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/LEGACY_DEV.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/hydra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/hydra.md -------------------------------------------------------------------------------- /docs/hydra.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/docs/hydra.tf -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/es-entity-rs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/BUCK -------------------------------------------------------------------------------- /lib/es-entity-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/Cargo.toml -------------------------------------------------------------------------------- /lib/es-entity-rs/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/src/error.rs -------------------------------------------------------------------------------- /lib/es-entity-rs/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/src/events.rs -------------------------------------------------------------------------------- /lib/es-entity-rs/src/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/src/id.rs -------------------------------------------------------------------------------- /lib/es-entity-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/es-entity-rs/src/lib.rs -------------------------------------------------------------------------------- /lib/es-entity-rs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /lib/eslint-config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/eslint-config/.prettierrc.js -------------------------------------------------------------------------------- /lib/eslint-config/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/eslint-config/BUCK -------------------------------------------------------------------------------- /lib/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/eslint-config/package.json -------------------------------------------------------------------------------- /lib/galoy-components/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/galoy-components/BUCK -------------------------------------------------------------------------------- /lib/galoy-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/galoy-components/package.json -------------------------------------------------------------------------------- /lib/galoy-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/galoy-components/src/index.ts -------------------------------------------------------------------------------- /lib/job-executor-rs/.env: -------------------------------------------------------------------------------- 1 | DATABASE_URL=postgres://user:password@localhost:5433/pg 2 | -------------------------------------------------------------------------------- /lib/job-executor-rs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/job-executor-rs/BUCK -------------------------------------------------------------------------------- /lib/job-executor-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/job-executor-rs/Cargo.toml -------------------------------------------------------------------------------- /lib/job-executor-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/job-executor-rs/src/lib.rs -------------------------------------------------------------------------------- /lib/job-executor-rs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /lib/tracing-rs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/tracing-rs/BUCK -------------------------------------------------------------------------------- /lib/tracing-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/tracing-rs/Cargo.toml -------------------------------------------------------------------------------- /lib/tracing-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/lib/tracing-rs/src/lib.rs -------------------------------------------------------------------------------- /lib/tracing-rs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prelude/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/.buckconfig -------------------------------------------------------------------------------- /prelude/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/.gitignore -------------------------------------------------------------------------------- /prelude/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/BUCK -------------------------------------------------------------------------------- /prelude/abi/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/abi/BUCK.v2 -------------------------------------------------------------------------------- /prelude/abi/constraints/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/abi/constraints/BUCK.v2 -------------------------------------------------------------------------------- /prelude/alias.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/alias.bzl -------------------------------------------------------------------------------- /prelude/android/aapt2_link.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/aapt2_link.bzl -------------------------------------------------------------------------------- /prelude/android/android.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/android.bzl -------------------------------------------------------------------------------- /prelude/android/android_aar.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/android_aar.bzl -------------------------------------------------------------------------------- /prelude/android/android_apk.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/android_apk.bzl -------------------------------------------------------------------------------- /prelude/android/apk_genrule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/apk_genrule.bzl -------------------------------------------------------------------------------- /prelude/android/configuration.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/configuration.bzl -------------------------------------------------------------------------------- /prelude/android/cpu_filters.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/cpu_filters.bzl -------------------------------------------------------------------------------- /prelude/android/dex_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/dex_rules.bzl -------------------------------------------------------------------------------- /prelude/android/exopackage.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/exopackage.bzl -------------------------------------------------------------------------------- /prelude/android/gen_aidl.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/gen_aidl.bzl -------------------------------------------------------------------------------- /prelude/android/proguard.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/proguard.bzl -------------------------------------------------------------------------------- /prelude/android/r_dot_java.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/r_dot_java.bzl -------------------------------------------------------------------------------- /prelude/android/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/android/util.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/util.bzl -------------------------------------------------------------------------------- /prelude/android/voltron.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/android/voltron.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_binary.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_bundle.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_bundle.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_core_data.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_core_data.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_dsym.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_dsym.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_library.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_package.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_package.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_sdk.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_sdk.bzl -------------------------------------------------------------------------------- /prelude/apple/apple_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/apple_test.bzl -------------------------------------------------------------------------------- /prelude/apple/debug.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/debug.bzl -------------------------------------------------------------------------------- /prelude/apple/modulemap.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/modulemap.bzl -------------------------------------------------------------------------------- /prelude/apple/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/apple/tools/bundling/test_resources/the.broken_json: -------------------------------------------------------------------------------- 1 | { 2 | "version": -------------------------------------------------------------------------------- /prelude/apple/tools/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/tools/defs.bzl -------------------------------------------------------------------------------- /prelude/apple/xcode.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/apple/xcode.bzl -------------------------------------------------------------------------------- /prelude/artifact_tset.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/artifact_tset.bzl -------------------------------------------------------------------------------- /prelude/artifacts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/artifacts.bzl -------------------------------------------------------------------------------- /prelude/asserts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/asserts.bzl -------------------------------------------------------------------------------- /prelude/attributes.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/attributes.bzl -------------------------------------------------------------------------------- /prelude/build_mode.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/build_mode.bzl -------------------------------------------------------------------------------- /prelude/builtin.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/builtin.bzl -------------------------------------------------------------------------------- /prelude/cache_mode.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cache_mode.bzl -------------------------------------------------------------------------------- /prelude/command_alias.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/command_alias.bzl -------------------------------------------------------------------------------- /prelude/cpu/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cpu/BUCK.v2 -------------------------------------------------------------------------------- /prelude/csharp/csharp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/csharp/csharp.bzl -------------------------------------------------------------------------------- /prelude/csharp/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/csharp/toolchain.bzl -------------------------------------------------------------------------------- /prelude/cxx/anon_link.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/anon_link.bzl -------------------------------------------------------------------------------- /prelude/cxx/archive.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/archive.bzl -------------------------------------------------------------------------------- /prelude/cxx/argsfiles.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/argsfiles.bzl -------------------------------------------------------------------------------- /prelude/cxx/attr_selection.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/attr_selection.bzl -------------------------------------------------------------------------------- /prelude/cxx/bitcode.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/bitcode.bzl -------------------------------------------------------------------------------- /prelude/cxx/comp_db.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/comp_db.bzl -------------------------------------------------------------------------------- /prelude/cxx/compile.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/compile.bzl -------------------------------------------------------------------------------- /prelude/cxx/compiler.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/compiler.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_bolt.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_bolt.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_context.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_context.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_executable.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_executable.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_library.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_sources.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_sources.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_toolchain.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_types.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_types.bzl -------------------------------------------------------------------------------- /prelude/cxx/cxx_utility.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/cxx_utility.bzl -------------------------------------------------------------------------------- /prelude/cxx/debug.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/debug.bzl -------------------------------------------------------------------------------- /prelude/cxx/dist_lto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/dist_lto/README.md -------------------------------------------------------------------------------- /prelude/cxx/dist_lto/tools.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/dist_lto/tools.bzl -------------------------------------------------------------------------------- /prelude/cxx/dist_lto/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prelude/cxx/dwp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/dwp.bzl -------------------------------------------------------------------------------- /prelude/cxx/groups.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/groups.bzl -------------------------------------------------------------------------------- /prelude/cxx/headers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/headers.bzl -------------------------------------------------------------------------------- /prelude/cxx/link.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/link.bzl -------------------------------------------------------------------------------- /prelude/cxx/link_groups.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/link_groups.bzl -------------------------------------------------------------------------------- /prelude/cxx/link_types.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/link_types.bzl -------------------------------------------------------------------------------- /prelude/cxx/linker.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/linker.bzl -------------------------------------------------------------------------------- /prelude/cxx/omnibus.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/omnibus.bzl -------------------------------------------------------------------------------- /prelude/cxx/platform.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/platform.bzl -------------------------------------------------------------------------------- /prelude/cxx/preprocessor.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/preprocessor.bzl -------------------------------------------------------------------------------- /prelude/cxx/symbols.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/symbols.bzl -------------------------------------------------------------------------------- /prelude/cxx/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/cxx/tools/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/tools/defs.bzl -------------------------------------------------------------------------------- /prelude/cxx/xcode.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/cxx/xcode.bzl -------------------------------------------------------------------------------- /prelude/debugging/common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/debugging/common.bzl -------------------------------------------------------------------------------- /prelude/debugging/fdb.bxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/debugging/fdb.bxl -------------------------------------------------------------------------------- /prelude/debugging/labels.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/debugging/labels.bzl -------------------------------------------------------------------------------- /prelude/debugging/types.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/debugging/types.bzl -------------------------------------------------------------------------------- /prelude/decls/apple_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/apple_common.bzl -------------------------------------------------------------------------------- /prelude/decls/common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/common.bzl -------------------------------------------------------------------------------- /prelude/decls/core_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/core_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/cxx_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/cxx_common.bzl -------------------------------------------------------------------------------- /prelude/decls/cxx_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/cxx_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/d_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/d_common.bzl -------------------------------------------------------------------------------- /prelude/decls/d_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/d_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/dotnet_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/dotnet_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/erlang_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/erlang_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/git_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/git_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/go_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/go_common.bzl -------------------------------------------------------------------------------- /prelude/decls/go_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/go_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/groovy_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/groovy_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/halide_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/halide_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/ios_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/ios_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/java_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/java_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/js_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/js_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/jvm_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/jvm_common.bzl -------------------------------------------------------------------------------- /prelude/decls/kotlin_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/kotlin_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/lua_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/lua_common.bzl -------------------------------------------------------------------------------- /prelude/decls/lua_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/lua_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/ocaml_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/ocaml_common.bzl -------------------------------------------------------------------------------- /prelude/decls/ocaml_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/ocaml_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/python_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/python_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/rust_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/rust_common.bzl -------------------------------------------------------------------------------- /prelude/decls/rust_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/rust_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/scala_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/scala_rules.bzl -------------------------------------------------------------------------------- /prelude/decls/shell_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/decls/shell_rules.bzl -------------------------------------------------------------------------------- /prelude/dist/dist_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/dist/dist_info.bzl -------------------------------------------------------------------------------- /prelude/docs/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/docs/rules.bzl -------------------------------------------------------------------------------- /prelude/erlang/erlang.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/erlang/erlang.bzl -------------------------------------------------------------------------------- /prelude/erlang/erlang_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/erlang/erlang_info.bzl -------------------------------------------------------------------------------- /prelude/erlang/shell/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/erlang/shell/BUCK.v2 -------------------------------------------------------------------------------- /prelude/erlang/shell/shell.bxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/erlang/shell/shell.bxl -------------------------------------------------------------------------------- /prelude/erlang/toolchain/erlang_ls.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prelude/export_exe.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/export_exe.bzl -------------------------------------------------------------------------------- /prelude/export_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/export_file.bzl -------------------------------------------------------------------------------- /prelude/filegroup.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/filegroup.bzl -------------------------------------------------------------------------------- /prelude/genrule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/genrule.bzl -------------------------------------------------------------------------------- /prelude/genrule_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/genrule_toolchain.bzl -------------------------------------------------------------------------------- /prelude/git/git_fetch.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/git/git_fetch.bzl -------------------------------------------------------------------------------- /prelude/git/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/git/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/git/tools/git_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/git/tools/git_fetch.py -------------------------------------------------------------------------------- /prelude/go/cgo_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/cgo_library.bzl -------------------------------------------------------------------------------- /prelude/go/compile.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/compile.bzl -------------------------------------------------------------------------------- /prelude/go/constraints/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/constraints/BUCK.v2 -------------------------------------------------------------------------------- /prelude/go/coverage.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/coverage.bzl -------------------------------------------------------------------------------- /prelude/go/go_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/go_binary.bzl -------------------------------------------------------------------------------- /prelude/go/go_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/go_library.bzl -------------------------------------------------------------------------------- /prelude/go/go_stdlib.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/go_stdlib.bzl -------------------------------------------------------------------------------- /prelude/go/go_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/go_test.bzl -------------------------------------------------------------------------------- /prelude/go/link.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/link.bzl -------------------------------------------------------------------------------- /prelude/go/packages.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/packages.bzl -------------------------------------------------------------------------------- /prelude/go/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/toolchain.bzl -------------------------------------------------------------------------------- /prelude/go/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/go/tools/cover_srcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/tools/cover_srcs.py -------------------------------------------------------------------------------- /prelude/go/tools/go_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/go/tools/go_wrapper.py -------------------------------------------------------------------------------- /prelude/haskell/compile.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/compile.bzl -------------------------------------------------------------------------------- /prelude/haskell/haskell.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/haskell.bzl -------------------------------------------------------------------------------- /prelude/haskell/ide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/ide/README.md -------------------------------------------------------------------------------- /prelude/haskell/ide/hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/ide/hie.yaml -------------------------------------------------------------------------------- /prelude/haskell/ide/ide.bxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/ide/ide.bxl -------------------------------------------------------------------------------- /prelude/haskell/link_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/link_info.bzl -------------------------------------------------------------------------------- /prelude/haskell/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/toolchain.bzl -------------------------------------------------------------------------------- /prelude/haskell/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/haskell/util.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/haskell/util.bzl -------------------------------------------------------------------------------- /prelude/http_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/http_file.bzl -------------------------------------------------------------------------------- /prelude/is_buck2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/is_buck2.bzl -------------------------------------------------------------------------------- /prelude/is_buck2_internal.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/is_buck2_internal.bzl -------------------------------------------------------------------------------- /prelude/is_full_meta_repo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/is_full_meta_repo.bzl -------------------------------------------------------------------------------- /prelude/java/class_to_srcs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/class_to_srcs.bzl -------------------------------------------------------------------------------- /prelude/java/dex.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/dex.bzl -------------------------------------------------------------------------------- /prelude/java/dex_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/dex_toolchain.bzl -------------------------------------------------------------------------------- /prelude/java/gwt_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/gwt_binary.bzl -------------------------------------------------------------------------------- /prelude/java/jar_genrule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/jar_genrule.bzl -------------------------------------------------------------------------------- /prelude/java/java.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/java.bzl -------------------------------------------------------------------------------- /prelude/java/java_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/java_binary.bzl -------------------------------------------------------------------------------- /prelude/java/java_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/java_library.bzl -------------------------------------------------------------------------------- /prelude/java/java_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/java_test.bzl -------------------------------------------------------------------------------- /prelude/java/keystore.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/keystore.bzl -------------------------------------------------------------------------------- /prelude/java/prebuilt_jar.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/prebuilt_jar.bzl -------------------------------------------------------------------------------- /prelude/java/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/java/tools/fat_jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/tools/fat_jar.py -------------------------------------------------------------------------------- /prelude/java/tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/java/tools/utils.py -------------------------------------------------------------------------------- /prelude/js/js.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/js/js.bzl -------------------------------------------------------------------------------- /prelude/js/js_bundle.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/js/js_bundle.bzl -------------------------------------------------------------------------------- /prelude/js/js_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/js/js_library.bzl -------------------------------------------------------------------------------- /prelude/js/js_providers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/js/js_providers.bzl -------------------------------------------------------------------------------- /prelude/js/js_utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/js/js_utils.bzl -------------------------------------------------------------------------------- /prelude/julia/julia.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/julia/julia.bzl -------------------------------------------------------------------------------- /prelude/julia/julia_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/julia/julia_binary.bzl -------------------------------------------------------------------------------- /prelude/julia/julia_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/julia/julia_info.bzl -------------------------------------------------------------------------------- /prelude/julia/julia_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/julia/julia_test.bzl -------------------------------------------------------------------------------- /prelude/julia/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/julia/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/jvm/nullsafe.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/jvm/nullsafe.bzl -------------------------------------------------------------------------------- /prelude/kotlin/kotlin.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/kotlin/kotlin.bzl -------------------------------------------------------------------------------- /prelude/kotlin/kotlin_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/kotlin/kotlin_test.bzl -------------------------------------------------------------------------------- /prelude/kotlin/tools/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/kotlin/tools/defs.bzl -------------------------------------------------------------------------------- /prelude/linking/link_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/linking/link_info.bzl -------------------------------------------------------------------------------- /prelude/linking/linkables.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/linking/linkables.bzl -------------------------------------------------------------------------------- /prelude/linking/lto.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/linking/lto.bzl -------------------------------------------------------------------------------- /prelude/linking/strip.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/linking/strip.bzl -------------------------------------------------------------------------------- /prelude/local_only.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/local_only.bzl -------------------------------------------------------------------------------- /prelude/lua/lua_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/lua/lua_binary.bzl -------------------------------------------------------------------------------- /prelude/lua/lua_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/lua/lua_library.bzl -------------------------------------------------------------------------------- /prelude/matlab/matlab.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/matlab/matlab.bzl -------------------------------------------------------------------------------- /prelude/matlab/matlab_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/matlab/matlab_info.bzl -------------------------------------------------------------------------------- /prelude/native.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/native.bzl -------------------------------------------------------------------------------- /prelude/ocaml/attrs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/ocaml/attrs.bzl -------------------------------------------------------------------------------- /prelude/ocaml/makefile.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/ocaml/makefile.bzl -------------------------------------------------------------------------------- /prelude/ocaml/ocaml.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/ocaml/ocaml.bzl -------------------------------------------------------------------------------- /prelude/os/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/os/BUCK.v2 -------------------------------------------------------------------------------- /prelude/os/constraints/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/os/constraints/BUCK.v2 -------------------------------------------------------------------------------- /prelude/os_lookup/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/os_lookup/defs.bzl -------------------------------------------------------------------------------- /prelude/oss/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Buck2 Prelude 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /prelude/oss/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/oss/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /prelude/oss/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/oss/CONTRIBUTING.md -------------------------------------------------------------------------------- /prelude/oss/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/oss/LICENSE-APACHE -------------------------------------------------------------------------------- /prelude/oss/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/oss/LICENSE-MIT -------------------------------------------------------------------------------- /prelude/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/oss/README.md -------------------------------------------------------------------------------- /prelude/paths.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/paths.bzl -------------------------------------------------------------------------------- /prelude/platforms/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/platforms/BUCK -------------------------------------------------------------------------------- /prelude/platforms/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/platforms/BUCK.v2 -------------------------------------------------------------------------------- /prelude/platforms/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/platforms/defs.bzl -------------------------------------------------------------------------------- /prelude/playground/test.bxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/playground/test.bxl -------------------------------------------------------------------------------- /prelude/prelude.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/prelude.bzl -------------------------------------------------------------------------------- /prelude/python/compile.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/compile.bzl -------------------------------------------------------------------------------- /prelude/python/interface.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/interface.bzl -------------------------------------------------------------------------------- /prelude/python/manifest.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/manifest.bzl -------------------------------------------------------------------------------- /prelude/python/python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/python.bzl -------------------------------------------------------------------------------- /prelude/python/python_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/python_test.bzl -------------------------------------------------------------------------------- /prelude/python/runtime/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/runtime/BUCK.v2 -------------------------------------------------------------------------------- /prelude/python/source_db.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/source_db.bzl -------------------------------------------------------------------------------- /prelude/python/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/toolchain.bzl -------------------------------------------------------------------------------- /prelude/python/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/python/typing.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/python/typing.bzl -------------------------------------------------------------------------------- /prelude/remote_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/remote_file.bzl -------------------------------------------------------------------------------- /prelude/resources.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/resources.bzl -------------------------------------------------------------------------------- /prelude/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rules.bzl -------------------------------------------------------------------------------- /prelude/rules_impl.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rules_impl.bzl -------------------------------------------------------------------------------- /prelude/rust/build.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/build.bzl -------------------------------------------------------------------------------- /prelude/rust/build_params.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/build_params.bzl -------------------------------------------------------------------------------- /prelude/rust/cargo_package.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/cargo_package.bzl -------------------------------------------------------------------------------- /prelude/rust/context.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/context.bzl -------------------------------------------------------------------------------- /prelude/rust/extern.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/extern.bzl -------------------------------------------------------------------------------- /prelude/rust/link_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/link_info.bzl -------------------------------------------------------------------------------- /prelude/rust/resources.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/resources.bzl -------------------------------------------------------------------------------- /prelude/rust/rust_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/rust_binary.bzl -------------------------------------------------------------------------------- /prelude/rust/rust_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/rust_common.bzl -------------------------------------------------------------------------------- /prelude/rust/rust_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/rust_library.bzl -------------------------------------------------------------------------------- /prelude/rust/targets.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/targets.bzl -------------------------------------------------------------------------------- /prelude/rust/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/rust/tools/attrs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/rust/tools/attrs.bzl -------------------------------------------------------------------------------- /prelude/sh_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/sh_binary.bzl -------------------------------------------------------------------------------- /prelude/sh_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/sh_test.bzl -------------------------------------------------------------------------------- /prelude/test/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/test/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/test_suite.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/test_suite.bzl -------------------------------------------------------------------------------- /prelude/tests/re_utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/tests/re_utils.bzl -------------------------------------------------------------------------------- /prelude/toolchains/conan/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/conan/BUCK -------------------------------------------------------------------------------- /prelude/toolchains/csharp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/csharp.bzl -------------------------------------------------------------------------------- /prelude/toolchains/cxx.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/cxx.bzl -------------------------------------------------------------------------------- /prelude/toolchains/cxx/zig/BUCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prelude/toolchains/demo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/demo.bzl -------------------------------------------------------------------------------- /prelude/toolchains/genrule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/genrule.bzl -------------------------------------------------------------------------------- /prelude/toolchains/go.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/go.bzl -------------------------------------------------------------------------------- /prelude/toolchains/haskell.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/haskell.bzl -------------------------------------------------------------------------------- /prelude/toolchains/ocaml.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/ocaml.bzl -------------------------------------------------------------------------------- /prelude/toolchains/python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/python.bzl -------------------------------------------------------------------------------- /prelude/toolchains/rust.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/toolchains/rust.bzl -------------------------------------------------------------------------------- /prelude/user/all.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/user/all.bzl -------------------------------------------------------------------------------- /prelude/user/rule_spec.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/user/rule_spec.bzl -------------------------------------------------------------------------------- /prelude/user/write_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/user/write_file.bzl -------------------------------------------------------------------------------- /prelude/utils/arglike.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/arglike.bzl -------------------------------------------------------------------------------- /prelude/utils/buckconfig.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/buckconfig.bzl -------------------------------------------------------------------------------- /prelude/utils/cmd_script.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/cmd_script.bzl -------------------------------------------------------------------------------- /prelude/utils/dicts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/dicts.bzl -------------------------------------------------------------------------------- /prelude/utils/expect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/expect.bzl -------------------------------------------------------------------------------- /prelude/utils/graph_utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/graph_utils.bzl -------------------------------------------------------------------------------- /prelude/utils/host.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/host.bzl -------------------------------------------------------------------------------- /prelude/utils/lazy.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/lazy.bzl -------------------------------------------------------------------------------- /prelude/utils/pick.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/pick.bzl -------------------------------------------------------------------------------- /prelude/utils/selects.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/selects.bzl -------------------------------------------------------------------------------- /prelude/utils/set.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/set.bzl -------------------------------------------------------------------------------- /prelude/utils/strings.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/strings.bzl -------------------------------------------------------------------------------- /prelude/utils/type_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/type_defs.bzl -------------------------------------------------------------------------------- /prelude/utils/utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/utils/utils.bzl -------------------------------------------------------------------------------- /prelude/validation_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/validation_deps.bzl -------------------------------------------------------------------------------- /prelude/windows/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/windows/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/worker_tool.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/worker_tool.bzl -------------------------------------------------------------------------------- /prelude/zip_file/tools/BUCK.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/zip_file/tools/BUCK.v2 -------------------------------------------------------------------------------- /prelude/zip_file/zip_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/prelude/zip_file/zip_file.bzl -------------------------------------------------------------------------------- /quickstart/.env.galoy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/.env.galoy -------------------------------------------------------------------------------- /quickstart/.envrc: -------------------------------------------------------------------------------- 1 | export GALOY_QUICKSTART_PATH="./" 2 | 3 | use flake 4 | -------------------------------------------------------------------------------- /quickstart/.gitignore: -------------------------------------------------------------------------------- 1 | tmp* 2 | -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/README.md -------------------------------------------------------------------------------- /quickstart/bin/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/bin/helpers.sh -------------------------------------------------------------------------------- /quickstart/bin/init-onchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/bin/init-onchain.sh -------------------------------------------------------------------------------- /quickstart/bin/quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/bin/quickstart.sh -------------------------------------------------------------------------------- /quickstart/bin/re-render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/bin/re-render.sh -------------------------------------------------------------------------------- /quickstart/dev/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/BUCK -------------------------------------------------------------------------------- /quickstart/dev/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/Tiltfile -------------------------------------------------------------------------------- /quickstart/dev/config/bria.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/config/bria.yml -------------------------------------------------------------------------------- /quickstart/dev/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/healthcheck.py -------------------------------------------------------------------------------- /quickstart/dev/helpers/auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/helpers/auth.sh -------------------------------------------------------------------------------- /quickstart/dev/helpers/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/helpers/cli.sh -------------------------------------------------------------------------------- /quickstart/dev/helpers/gql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/helpers/gql.sh -------------------------------------------------------------------------------- /quickstart/dev/tilt.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/dev/tilt.bzl -------------------------------------------------------------------------------- /quickstart/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/docker-compose.yml -------------------------------------------------------------------------------- /quickstart/vendir.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/vendir.lock.yml -------------------------------------------------------------------------------- /quickstart/vendir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/vendir.yml -------------------------------------------------------------------------------- /quickstart/vendir/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/quickstart/vendir/template.yml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | edition = "2021" 2 | newline_style = "Unix" 3 | -------------------------------------------------------------------------------- /third-party/node/rover/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/node/rover/BUCK -------------------------------------------------------------------------------- /third-party/node/rover/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /third-party/node/turbo/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/node/turbo/BUCK -------------------------------------------------------------------------------- /third-party/node/turbo/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /third-party/rust/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/rust/BUCK -------------------------------------------------------------------------------- /third-party/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/rust/Cargo.lock -------------------------------------------------------------------------------- /third-party/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/rust/Cargo.toml -------------------------------------------------------------------------------- /third-party/rust/fixups/ahash/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/anyhow/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/async-trait/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/axum-core/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/axum/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/crossbeam-queue/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/crossbeam-utils/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/futures-channel/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/futures-core/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/futures-task/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/futures-util/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/generic-array/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/httparse/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/ipconfig/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/libm/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/lock_api/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/mio/fixups.toml: -------------------------------------------------------------------------------- 1 | extra_srcs = ["src/**/*.rs"] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/mongodb/fixups.toml: -------------------------------------------------------------------------------- 1 | cargo_env = true 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/multer/fixups.toml: -------------------------------------------------------------------------------- 1 | extra_deps = [":version_check-0.9.4"] 2 | buildscript = [] 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/native-tls/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/opentelemetry-otlp/fixups.toml: -------------------------------------------------------------------------------- 1 | cargo_env = true 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/opentelemetry_sdk/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/parking_lot_core/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] -------------------------------------------------------------------------------- /third-party/rust/fixups/paste/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/pest/fixups.toml: -------------------------------------------------------------------------------- 1 | extra_srcs = ["src/**/*.rs"] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/prettyplease/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/psm/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/radium/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/reqwest/fixups.toml: -------------------------------------------------------------------------------- 1 | extra_srcs = ["src/**/*.rs"] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/rust-i18n/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/rustls/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/serde/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/serde_json/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/slab/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/stacker/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/syn/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/system-configuration-sys/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/thiserror/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/tonic/fixups.toml: -------------------------------------------------------------------------------- 1 | cargo_env = true 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/tracing-opentelemetry/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript = [] 2 | cargo_env = true 3 | -------------------------------------------------------------------------------- /third-party/rust/fixups/trust-dns-resolver/fixups.toml: -------------------------------------------------------------------------------- 1 | cargo_env = true 2 | -------------------------------------------------------------------------------- /third-party/rust/fixups/zerocopy/fixups.toml: -------------------------------------------------------------------------------- 1 | cargo_env = true 2 | -------------------------------------------------------------------------------- /third-party/rust/reindeer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/third-party/rust/reindeer.toml -------------------------------------------------------------------------------- /third-party/rust/top/main.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolchains/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/BUCK -------------------------------------------------------------------------------- /toolchains/rover/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rover/BUCK -------------------------------------------------------------------------------- /toolchains/rover/macros.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rover/macros.bzl -------------------------------------------------------------------------------- /toolchains/rover/output_sdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rover/output_sdl.py -------------------------------------------------------------------------------- /toolchains/rover/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rover/toolchain.bzl -------------------------------------------------------------------------------- /toolchains/rust/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rust/BUCK -------------------------------------------------------------------------------- /toolchains/rust/macros.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rust/macros.bzl -------------------------------------------------------------------------------- /toolchains/rust/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/rust/toolchain.bzl -------------------------------------------------------------------------------- /toolchains/simple-pnpm/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/simple-pnpm/BUCK -------------------------------------------------------------------------------- /toolchains/workspace-pnpm/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/toolchains/workspace-pnpm/BUCK -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/typos.toml -------------------------------------------------------------------------------- /vendir.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir.lock.yml -------------------------------------------------------------------------------- /vendir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir.yml -------------------------------------------------------------------------------- /vendir/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir/BUCK -------------------------------------------------------------------------------- /vendir/bin/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir/bin/sync.sh -------------------------------------------------------------------------------- /vendir/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir/template.yml -------------------------------------------------------------------------------- /vendir/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaloyMoney/blink/HEAD/vendir/values.yml --------------------------------------------------------------------------------