├── .circleci └── config.yml ├── .dockerignore ├── .env.example ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── assets.json.example ├── bootstrap.js ├── config └── .gitignore ├── docker-compose.yml ├── kube-svc.yaml ├── kube.yaml ├── nest-cli.json ├── package.json ├── renovate.json ├── sonar-project.properties ├── src ├── admin │ ├── admin.controller.spec.ts │ ├── admin.controller.ts │ └── admin.module.ts ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── auth.controller.spec.ts │ ├── auth.controller.ts │ ├── auth.module.ts │ ├── dto │ │ ├── challenge-request.dto.ts │ │ └── token-request.dto.ts │ ├── jwt-auth.guard.ts │ └── jwt.strategy.ts ├── config │ ├── app.ts │ ├── assets.ts │ ├── database.ts │ ├── queue.ts │ ├── redis.ts │ └── stellar.ts ├── http-exception.filter.ts ├── interactive │ ├── account.entity.ts │ ├── dto │ │ └── withdraw-sep24.dto.ts │ ├── interactive.controller.spec.ts │ ├── interactive.controller.ts │ ├── interactive.module.ts │ ├── user.entity.ts │ ├── user.service.spec.ts │ └── user.service.ts ├── interfaces │ └── asset.interface.ts ├── kyc │ ├── kyc.module.ts │ └── sumsub │ │ ├── sumsub.service.int-spec.ts │ │ ├── sumsub.service.spec.ts │ │ └── sumsub.service.ts ├── main.ts ├── non-interactive │ ├── address-mapping.entity.ts │ ├── address-mapping.service.spec.ts │ ├── address-mapping.service.ts │ ├── dto │ │ ├── deposit-response.dto.ts │ │ ├── deposit.dto.ts │ │ ├── mapping.dto.ts │ │ ├── withdraw.dto.ts │ │ └── withdrawal-response.dto.ts │ ├── non-interactive.controller.spec.ts │ ├── non-interactive.controller.ts │ └── non-interactive.module.ts ├── queues │ └── queues.module.ts ├── stellar-monitor.ts ├── transactions │ ├── dto │ │ ├── transaction-filter.dto.ts │ │ ├── transaction.dto.ts │ │ ├── transactions-filter-internal.dto.ts │ │ ├── transactions-filter.dto.ts │ │ └── tx-notification.dto.ts │ ├── enums │ │ ├── transaction-state.enum.ts │ │ └── transaction-type.enum.ts │ ├── sign.processor.ts │ ├── submit.processor.ts │ ├── temp-transaction.entity.ts │ ├── temp-transactions.processor.ts │ ├── temp-transactions.service.ts │ ├── transaction-log.entity.ts │ ├── transaction-logs.service.ts │ ├── transaction.entity.ts │ ├── transactions.controller.spec.ts │ ├── transactions.controller.ts │ ├── transactions.module.ts │ ├── transactions.processor.ts │ └── transactions.service.ts ├── transformers │ ├── bignumber-to-string.transformer.spec.ts │ ├── bignumber-to-string.transformer.ts │ ├── trim-string.transformer.spec.ts │ └── trim-string.transformer.ts ├── utils │ ├── helpers.ts │ ├── utils.module.ts │ ├── utils.service.spec.ts │ └── utils.service.ts ├── validators │ ├── known-asset-issuer.validator.ts │ ├── known-asset.validator.ts │ ├── stellar-account.validator.ts │ ├── stellar-memo.validator.spec.ts │ ├── stellar-memo.validator.ts │ └── stellar-tx.validator.ts └── wallets │ ├── dto │ └── tx-output.dto.ts │ ├── stellar.service.spec.ts │ ├── stellar.service.ts │ ├── wallet-factory.service.spec.ts │ ├── wallet-factory.service.ts │ ├── wallet.interface.ts │ └── wallets.module.ts ├── test ├── app.e2e-spec.ts ├── jest-e2e.json ├── jest-int.json ├── non-interactive.e2e-spec.ts └── transactions.e2e-spec.ts ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json ├── views ├── admin │ ├── index.hbs │ └── txs.hbs ├── layouts │ └── main.hbs └── stellar-toml.hbs └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/assets.json.example -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/bootstrap.js -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.toml 3 | postgres.crt 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kube-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/kube-svc.yaml -------------------------------------------------------------------------------- /kube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/kube.yaml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/renovate.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/admin/admin.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/admin/admin.controller.spec.ts -------------------------------------------------------------------------------- /src/admin/admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/admin/admin.controller.ts -------------------------------------------------------------------------------- /src/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/admin/admin.module.ts -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/dto/challenge-request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/dto/challenge-request.dto.ts -------------------------------------------------------------------------------- /src/auth/dto/token-request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/dto/token-request.dto.ts -------------------------------------------------------------------------------- /src/auth/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/jwt-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/app.ts -------------------------------------------------------------------------------- /src/config/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/assets.ts -------------------------------------------------------------------------------- /src/config/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/database.ts -------------------------------------------------------------------------------- /src/config/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/queue.ts -------------------------------------------------------------------------------- /src/config/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/redis.ts -------------------------------------------------------------------------------- /src/config/stellar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/config/stellar.ts -------------------------------------------------------------------------------- /src/http-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/http-exception.filter.ts -------------------------------------------------------------------------------- /src/interactive/account.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/account.entity.ts -------------------------------------------------------------------------------- /src/interactive/dto/withdraw-sep24.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/dto/withdraw-sep24.dto.ts -------------------------------------------------------------------------------- /src/interactive/interactive.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/interactive.controller.spec.ts -------------------------------------------------------------------------------- /src/interactive/interactive.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/interactive.controller.ts -------------------------------------------------------------------------------- /src/interactive/interactive.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/interactive.module.ts -------------------------------------------------------------------------------- /src/interactive/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/user.entity.ts -------------------------------------------------------------------------------- /src/interactive/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/user.service.spec.ts -------------------------------------------------------------------------------- /src/interactive/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interactive/user.service.ts -------------------------------------------------------------------------------- /src/interfaces/asset.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/interfaces/asset.interface.ts -------------------------------------------------------------------------------- /src/kyc/kyc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/kyc/kyc.module.ts -------------------------------------------------------------------------------- /src/kyc/sumsub/sumsub.service.int-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/kyc/sumsub/sumsub.service.int-spec.ts -------------------------------------------------------------------------------- /src/kyc/sumsub/sumsub.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/kyc/sumsub/sumsub.service.spec.ts -------------------------------------------------------------------------------- /src/kyc/sumsub/sumsub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/kyc/sumsub/sumsub.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/non-interactive/address-mapping.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/address-mapping.entity.ts -------------------------------------------------------------------------------- /src/non-interactive/address-mapping.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/address-mapping.service.spec.ts -------------------------------------------------------------------------------- /src/non-interactive/address-mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/address-mapping.service.ts -------------------------------------------------------------------------------- /src/non-interactive/dto/deposit-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/dto/deposit-response.dto.ts -------------------------------------------------------------------------------- /src/non-interactive/dto/deposit.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/dto/deposit.dto.ts -------------------------------------------------------------------------------- /src/non-interactive/dto/mapping.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/dto/mapping.dto.ts -------------------------------------------------------------------------------- /src/non-interactive/dto/withdraw.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/dto/withdraw.dto.ts -------------------------------------------------------------------------------- /src/non-interactive/dto/withdrawal-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/dto/withdrawal-response.dto.ts -------------------------------------------------------------------------------- /src/non-interactive/non-interactive.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/non-interactive.controller.spec.ts -------------------------------------------------------------------------------- /src/non-interactive/non-interactive.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/non-interactive.controller.ts -------------------------------------------------------------------------------- /src/non-interactive/non-interactive.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/non-interactive/non-interactive.module.ts -------------------------------------------------------------------------------- /src/queues/queues.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/queues/queues.module.ts -------------------------------------------------------------------------------- /src/stellar-monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/stellar-monitor.ts -------------------------------------------------------------------------------- /src/transactions/dto/transaction-filter.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/dto/transaction-filter.dto.ts -------------------------------------------------------------------------------- /src/transactions/dto/transaction.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/dto/transaction.dto.ts -------------------------------------------------------------------------------- /src/transactions/dto/transactions-filter-internal.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/dto/transactions-filter-internal.dto.ts -------------------------------------------------------------------------------- /src/transactions/dto/transactions-filter.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/dto/transactions-filter.dto.ts -------------------------------------------------------------------------------- /src/transactions/dto/tx-notification.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/dto/tx-notification.dto.ts -------------------------------------------------------------------------------- /src/transactions/enums/transaction-state.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/enums/transaction-state.enum.ts -------------------------------------------------------------------------------- /src/transactions/enums/transaction-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/enums/transaction-type.enum.ts -------------------------------------------------------------------------------- /src/transactions/sign.processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/sign.processor.ts -------------------------------------------------------------------------------- /src/transactions/submit.processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/submit.processor.ts -------------------------------------------------------------------------------- /src/transactions/temp-transaction.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/temp-transaction.entity.ts -------------------------------------------------------------------------------- /src/transactions/temp-transactions.processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/temp-transactions.processor.ts -------------------------------------------------------------------------------- /src/transactions/temp-transactions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/temp-transactions.service.ts -------------------------------------------------------------------------------- /src/transactions/transaction-log.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transaction-log.entity.ts -------------------------------------------------------------------------------- /src/transactions/transaction-logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transaction-logs.service.ts -------------------------------------------------------------------------------- /src/transactions/transaction.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transaction.entity.ts -------------------------------------------------------------------------------- /src/transactions/transactions.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transactions.controller.spec.ts -------------------------------------------------------------------------------- /src/transactions/transactions.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transactions.controller.ts -------------------------------------------------------------------------------- /src/transactions/transactions.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transactions.module.ts -------------------------------------------------------------------------------- /src/transactions/transactions.processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transactions.processor.ts -------------------------------------------------------------------------------- /src/transactions/transactions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transactions/transactions.service.ts -------------------------------------------------------------------------------- /src/transformers/bignumber-to-string.transformer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transformers/bignumber-to-string.transformer.spec.ts -------------------------------------------------------------------------------- /src/transformers/bignumber-to-string.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transformers/bignumber-to-string.transformer.ts -------------------------------------------------------------------------------- /src/transformers/trim-string.transformer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transformers/trim-string.transformer.spec.ts -------------------------------------------------------------------------------- /src/transformers/trim-string.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/transformers/trim-string.transformer.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/utils.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/utils/utils.module.ts -------------------------------------------------------------------------------- /src/utils/utils.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/utils/utils.service.spec.ts -------------------------------------------------------------------------------- /src/utils/utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/utils/utils.service.ts -------------------------------------------------------------------------------- /src/validators/known-asset-issuer.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/known-asset-issuer.validator.ts -------------------------------------------------------------------------------- /src/validators/known-asset.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/known-asset.validator.ts -------------------------------------------------------------------------------- /src/validators/stellar-account.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/stellar-account.validator.ts -------------------------------------------------------------------------------- /src/validators/stellar-memo.validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/stellar-memo.validator.spec.ts -------------------------------------------------------------------------------- /src/validators/stellar-memo.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/stellar-memo.validator.ts -------------------------------------------------------------------------------- /src/validators/stellar-tx.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/validators/stellar-tx.validator.ts -------------------------------------------------------------------------------- /src/wallets/dto/tx-output.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/dto/tx-output.dto.ts -------------------------------------------------------------------------------- /src/wallets/stellar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/stellar.service.spec.ts -------------------------------------------------------------------------------- /src/wallets/stellar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/stellar.service.ts -------------------------------------------------------------------------------- /src/wallets/wallet-factory.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/wallet-factory.service.spec.ts -------------------------------------------------------------------------------- /src/wallets/wallet-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/wallet-factory.service.ts -------------------------------------------------------------------------------- /src/wallets/wallet.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/wallet.interface.ts -------------------------------------------------------------------------------- /src/wallets/wallets.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/src/wallets/wallets.module.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /test/jest-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/test/jest-int.json -------------------------------------------------------------------------------- /test/non-interactive.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/test/non-interactive.e2e-spec.ts -------------------------------------------------------------------------------- /test/transactions.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/test/transactions.e2e-spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/tslint.json -------------------------------------------------------------------------------- /views/admin/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/views/admin/index.hbs -------------------------------------------------------------------------------- /views/admin/txs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/views/admin/txs.hbs -------------------------------------------------------------------------------- /views/layouts/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/views/layouts/main.hbs -------------------------------------------------------------------------------- /views/stellar-toml.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/views/stellar-toml.hbs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apay-io/transfer-server/HEAD/webpack.config.js --------------------------------------------------------------------------------