├── .env.example ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yaml │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── atlas-migrate.yml │ ├── ci.yml │ └── create-release.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.prod ├── LICENSE ├── Makefile ├── README.md ├── atlas.hcl ├── config ├── auth.go ├── config.go ├── crypto.go ├── db.go ├── engine.go ├── etherscan.go ├── identity.go ├── notification.go ├── order.go ├── redis.go └── server.go ├── controllers ├── accounts │ ├── auth.go │ ├── auth_test.go │ ├── profile.go │ └── profile_test.go ├── index.go ├── index_test.go ├── provider │ ├── provider.go │ └── provider_test.go └── sender │ ├── sender.go │ └── sender_test.go ├── docker-compose.yml ├── ent ├── apikey.go ├── apikey │ ├── apikey.go │ └── where.go ├── apikey_create.go ├── apikey_delete.go ├── apikey_query.go ├── apikey_update.go ├── beneficialowner.go ├── beneficialowner │ ├── beneficialowner.go │ └── where.go ├── beneficialowner_create.go ├── beneficialowner_delete.go ├── beneficialowner_query.go ├── beneficialowner_update.go ├── client.go ├── ent.go ├── enttest │ └── enttest.go ├── fiatcurrency.go ├── fiatcurrency │ ├── fiatcurrency.go │ └── where.go ├── fiatcurrency_create.go ├── fiatcurrency_delete.go ├── fiatcurrency_query.go ├── fiatcurrency_update.go ├── generate.go ├── hook │ └── hook.go ├── identityverificationrequest.go ├── identityverificationrequest │ ├── identityverificationrequest.go │ └── where.go ├── identityverificationrequest_create.go ├── identityverificationrequest_delete.go ├── identityverificationrequest_query.go ├── identityverificationrequest_update.go ├── institution.go ├── institution │ ├── institution.go │ └── where.go ├── institution_create.go ├── institution_delete.go ├── institution_query.go ├── institution_update.go ├── kybprofile.go ├── kybprofile │ ├── kybprofile.go │ └── where.go ├── kybprofile_create.go ├── kybprofile_delete.go ├── kybprofile_query.go ├── kybprofile_update.go ├── linkedaddress.go ├── linkedaddress │ ├── linkedaddress.go │ └── where.go ├── linkedaddress_create.go ├── linkedaddress_delete.go ├── linkedaddress_query.go ├── linkedaddress_update.go ├── lockorderfulfillment.go ├── lockorderfulfillment │ ├── lockorderfulfillment.go │ └── where.go ├── lockorderfulfillment_create.go ├── lockorderfulfillment_delete.go ├── lockorderfulfillment_query.go ├── lockorderfulfillment_update.go ├── lockpaymentorder.go ├── lockpaymentorder │ ├── lockpaymentorder.go │ └── where.go ├── lockpaymentorder_create.go ├── lockpaymentorder_delete.go ├── lockpaymentorder_query.go ├── lockpaymentorder_update.go ├── migrate │ ├── .DS_Store │ ├── main.go │ ├── migrate.go │ ├── migrations │ │ ├── 20240118234246_initial.sql │ │ ├── 20240130122324_order_from_address.sql │ │ ├── 20240202010744_fees_on_order.sql │ │ ├── 20240207044652_receive_address_tx_hash.sql │ │ ├── 20240214041318_order_settled_percent.sql │ │ ├── 20240217095711_add_protocol_fee.sql │ │ ├── 20240220003618_add_is_kyb_verified.sql │ │ ├── 20240326145227_has_early_access.sql │ │ ├── 20240404065157_add_gateway_id.sql │ │ ├── 20240404231425_add_fee_to_network.sql │ │ ├── 20240414002738_payment_order_block_number.sql │ │ ├── 20240416055001_chain_id_hex.sql │ │ ├── 20240421230634_add_return_address.sql │ │ ├── 20240610130003_add_transaction_log.sql │ │ ├── 20240613025318_network_gateway_address.sql │ │ ├── 20240613142908_add_institution.sql │ │ ├── 20240613143010_ngn_institutions.sql │ │ ├── 20240626125532_sender_order_tokens.sql │ │ ├── 20240807013441_add_psp_to_fulfillment.sql │ │ ├── 20240820211511_unique_gateway_id.sql │ │ ├── 20240820215151_multi_fulfillments.sql │ │ ├── 20240822020854_fee_percent.sql │ │ ├── 20240831223804_add_fiat_currencies_1.sql │ │ ├── 20240831223854_kes_institutions.sql │ │ ├── 20240831231010_ugx_institutions.sql │ │ ├── 20240831231410_tzs_institutions.sql │ │ ├── 20240831231510_xofben_institutions.sql │ │ ├── 20240831231600_xofciv_institutions.sql │ │ ├── 20240831235010_ghs_institutions.sql │ │ ├── 20240905170202_sender_provider_id.sql │ │ ├── 20240919231535_gateway_id_not_unique.sql │ │ ├── 20240921140012_lockpaymentorder_indexes.sql │ │ ├── 20240921162100_paymentorder_triggers.sql │ │ ├── 20240921194100_fix_paymentorder_triggers.sql │ │ ├── 20240921200000_fix_round_func.sql │ │ ├── 20240921203200_fix_round_func_2.sql │ │ ├── 20240921215500_fix_round_func_3.sql │ │ ├── 20240921224500_fix_round_func_4.sql │ │ ├── 20240921225500_fix_round_func_5.sql │ │ ├── 20240924051600_fix_round_func_6.sql │ │ ├── 20240926223529_id_verification.sql │ │ ├── 20241011010524_linked_addresses.sql │ │ ├── 20241226183354_add_reference.sql │ │ ├── 20250205002723_lof_optional_txid.sql │ │ ├── 20250220014823_aa_to_db.sql │ │ ├── 20250221023922_token_base_currency.sql │ │ ├── 20250308113133_multi_currency_schema_1.sql │ │ ├── 20250308153810_multi_currency_data_migrate.sql │ │ ├── 20250308161319_multi_currency_schema_2.sql │ │ ├── 20250311055352_multi_currency_schema_3.sql │ │ ├── 20250425202927_rate_slippage.sql │ │ ├── 20250505033200_tzs_bank_institutions.sql │ │ ├── 20250505033210_ugx_bank_institutions.sql │ │ ├── 20250510231545_order_metadata.sql │ │ ├── 20250517004500_brl_institutions.sql │ │ ├── 20250608014647_engine_bump.sql │ │ ├── 20250626085120_kyb_schema.sql │ │ ├── 20250704022235_payment_webhook.sql │ │ ├── 20250721051708_add_message_hash_and_protocol_fee.sql │ │ ├── 20250721080600_update_payment_order_triggers.sql │ │ ├── 20250801142901_add_provider_currencies.sql │ │ ├── 20250904102613_add_network_unique_to_provider_order_token.sql │ │ ├── 20250918114527_add_amount_in_usd_to_payment_tables.sql │ │ ├── 20250925000000_add_kyb_rejection_comment.sql │ │ ├── 20250929152701_mwk_institutions.sql │ │ ├── 20251127160716_provider_fiat_accounts.sql │ │ ├── 20251127162259_add_min_max_otc.sql │ │ ├── 20251205013057_add_max_fee_cap.sql │ │ └── atlas.sum │ └── schema.go ├── mutation.go ├── network.go ├── network │ ├── network.go │ └── where.go ├── network_create.go ├── network_delete.go ├── network_query.go ├── network_update.go ├── paymentorder.go ├── paymentorder │ ├── paymentorder.go │ └── where.go ├── paymentorder_create.go ├── paymentorder_delete.go ├── paymentorder_query.go ├── paymentorder_update.go ├── paymentorderrecipient.go ├── paymentorderrecipient │ ├── paymentorderrecipient.go │ └── where.go ├── paymentorderrecipient_create.go ├── paymentorderrecipient_delete.go ├── paymentorderrecipient_query.go ├── paymentorderrecipient_update.go ├── paymentwebhook.go ├── paymentwebhook │ ├── paymentwebhook.go │ └── where.go ├── paymentwebhook_create.go ├── paymentwebhook_delete.go ├── paymentwebhook_query.go ├── paymentwebhook_update.go ├── predicate │ └── predicate.go ├── providercurrencies.go ├── providercurrencies │ ├── providercurrencies.go │ └── where.go ├── providercurrencies_create.go ├── providercurrencies_delete.go ├── providercurrencies_query.go ├── providercurrencies_update.go ├── providerfiataccount.go ├── providerfiataccount │ ├── providerfiataccount.go │ └── where.go ├── providerfiataccount_create.go ├── providerfiataccount_delete.go ├── providerfiataccount_query.go ├── providerfiataccount_update.go ├── providerordertoken.go ├── providerordertoken │ ├── providerordertoken.go │ └── where.go ├── providerordertoken_create.go ├── providerordertoken_delete.go ├── providerordertoken_query.go ├── providerordertoken_update.go ├── providerprofile.go ├── providerprofile │ ├── providerprofile.go │ └── where.go ├── providerprofile_create.go ├── providerprofile_delete.go ├── providerprofile_query.go ├── providerprofile_update.go ├── providerrating.go ├── providerrating │ ├── providerrating.go │ └── where.go ├── providerrating_create.go ├── providerrating_delete.go ├── providerrating_query.go ├── providerrating_update.go ├── provisionbucket.go ├── provisionbucket │ ├── provisionbucket.go │ └── where.go ├── provisionbucket_create.go ├── provisionbucket_delete.go ├── provisionbucket_query.go ├── provisionbucket_update.go ├── receiveaddress.go ├── receiveaddress │ ├── receiveaddress.go │ └── where.go ├── receiveaddress_create.go ├── receiveaddress_delete.go ├── receiveaddress_query.go ├── receiveaddress_update.go ├── runtime.go ├── runtime │ └── runtime.go ├── schema │ ├── apikey.go │ ├── beneficialowner.go │ ├── fiatcurrency.go │ ├── identityverificationrequest.go │ ├── institution.go │ ├── kybprofile.go │ ├── linkedaddress.go │ ├── lockorderfulfillment.go │ ├── lockpaymentorder.go │ ├── mixins.go │ ├── network.go │ ├── paymentorder.go │ ├── paymentorderrecipient.go │ ├── paymentwebhook.go │ ├── providercurrencies.go │ ├── providerfiataccount.go │ ├── providerordertoken.go │ ├── providerprofile.go │ ├── providerrating.go │ ├── provisionbucket.go │ ├── receiveaddress.go │ ├── senderordertoken.go │ ├── senderprofile.go │ ├── token.go │ ├── transactionlog.go │ ├── user.go │ ├── verificationtoken.go │ └── webhookretryattempt.go ├── senderordertoken.go ├── senderordertoken │ ├── senderordertoken.go │ └── where.go ├── senderordertoken_create.go ├── senderordertoken_delete.go ├── senderordertoken_query.go ├── senderordertoken_update.go ├── senderprofile.go ├── senderprofile │ ├── senderprofile.go │ └── where.go ├── senderprofile_create.go ├── senderprofile_delete.go ├── senderprofile_query.go ├── senderprofile_update.go ├── token.go ├── token │ ├── token.go │ └── where.go ├── token_create.go ├── token_delete.go ├── token_query.go ├── token_update.go ├── transactionlog.go ├── transactionlog │ ├── transactionlog.go │ └── where.go ├── transactionlog_create.go ├── transactionlog_delete.go ├── transactionlog_query.go ├── transactionlog_update.go ├── tx.go ├── user.go ├── user │ ├── user.go │ └── where.go ├── user_create.go ├── user_delete.go ├── user_query.go ├── user_update.go ├── verificationtoken.go ├── verificationtoken │ ├── verificationtoken.go │ └── where.go ├── verificationtoken_create.go ├── verificationtoken_delete.go ├── verificationtoken_query.go ├── verificationtoken_update.go ├── webhookretryattempt.go ├── webhookretryattempt │ ├── webhookretryattempt.go │ └── where.go ├── webhookretryattempt_create.go ├── webhookretryattempt_delete.go ├── webhookretryattempt_query.go └── webhookretryattempt_update.go ├── go.mod ├── go.sum ├── init.sh ├── install_atlas.sh ├── main.go ├── redis.conf ├── routers ├── index.go ├── middleware │ ├── auth.go │ ├── cors.go │ ├── request.go │ └── request_test.go └── router.go ├── scripts ├── db_data │ ├── dump.sql │ └── functions │ │ ├── calculate_total_amount.sql │ │ └── check_payment_order_amount.sql ├── import_db.sh ├── pre-commit.sh └── seed-db │ └── main.go ├── services ├── abi.go ├── api_key.go ├── balance_management.go ├── blockscout.go ├── common │ ├── indexer.go │ └── order.go ├── contracts │ ├── ERC20Token.go │ ├── EntryPoint.go │ ├── Gateway.go │ ├── SimpleAccount.go │ └── SimpleAccountFactory.go ├── email │ ├── brevo.go │ ├── email.go │ ├── email_test.go │ ├── interface.go │ ├── mailgun.go │ ├── provider.go │ └── sendgrid.go ├── engine.go ├── engine_test.go ├── etherscan.go ├── etherscan_test.go ├── indexer │ ├── evm.go │ └── tron.go ├── kyc │ ├── errors │ │ └── errors.go │ └── smile │ │ ├── id_types.json │ │ ├── id_types_schema.json │ │ ├── id_types_test.go │ │ ├── index.go │ │ └── index_test.go ├── order │ ├── evm.go │ └── tron.go ├── priority_queue.go ├── priority_queue_test.go ├── receive_address.go ├── slack.go ├── slack_test.go └── turnstile.go ├── storage ├── database.go └── redis.go ├── tasks ├── tasks.go └── tasks_test.go ├── types └── types.go └── utils ├── crypto ├── crypto.go └── crypto_test.go ├── http.go ├── logger └── logger.go ├── rpc_events.go ├── test ├── db.go ├── mocks.go ├── test.env └── test.go ├── token └── token.go ├── userop.go ├── userop_test.go ├── utils.go └── utils_test.go /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/ISSUE_TEMPLATE/config.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/atlas-migrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/workflows/atlas-migrate.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/Dockerfile.prod -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/README.md -------------------------------------------------------------------------------- /atlas.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/atlas.hcl -------------------------------------------------------------------------------- /config/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/auth.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/config.go -------------------------------------------------------------------------------- /config/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/crypto.go -------------------------------------------------------------------------------- /config/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/db.go -------------------------------------------------------------------------------- /config/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/engine.go -------------------------------------------------------------------------------- /config/etherscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/etherscan.go -------------------------------------------------------------------------------- /config/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/identity.go -------------------------------------------------------------------------------- /config/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/notification.go -------------------------------------------------------------------------------- /config/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/order.go -------------------------------------------------------------------------------- /config/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/redis.go -------------------------------------------------------------------------------- /config/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/config/server.go -------------------------------------------------------------------------------- /controllers/accounts/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/accounts/auth.go -------------------------------------------------------------------------------- /controllers/accounts/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/accounts/auth_test.go -------------------------------------------------------------------------------- /controllers/accounts/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/accounts/profile.go -------------------------------------------------------------------------------- /controllers/accounts/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/accounts/profile_test.go -------------------------------------------------------------------------------- /controllers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/index.go -------------------------------------------------------------------------------- /controllers/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/index_test.go -------------------------------------------------------------------------------- /controllers/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/provider/provider.go -------------------------------------------------------------------------------- /controllers/provider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/provider/provider_test.go -------------------------------------------------------------------------------- /controllers/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/sender/sender.go -------------------------------------------------------------------------------- /controllers/sender/sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/controllers/sender/sender_test.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ent/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey.go -------------------------------------------------------------------------------- /ent/apikey/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey/apikey.go -------------------------------------------------------------------------------- /ent/apikey/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey/where.go -------------------------------------------------------------------------------- /ent/apikey_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey_create.go -------------------------------------------------------------------------------- /ent/apikey_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey_delete.go -------------------------------------------------------------------------------- /ent/apikey_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey_query.go -------------------------------------------------------------------------------- /ent/apikey_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/apikey_update.go -------------------------------------------------------------------------------- /ent/beneficialowner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner.go -------------------------------------------------------------------------------- /ent/beneficialowner/beneficialowner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner/beneficialowner.go -------------------------------------------------------------------------------- /ent/beneficialowner/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner/where.go -------------------------------------------------------------------------------- /ent/beneficialowner_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner_create.go -------------------------------------------------------------------------------- /ent/beneficialowner_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner_delete.go -------------------------------------------------------------------------------- /ent/beneficialowner_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner_query.go -------------------------------------------------------------------------------- /ent/beneficialowner_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/beneficialowner_update.go -------------------------------------------------------------------------------- /ent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/client.go -------------------------------------------------------------------------------- /ent/ent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/ent.go -------------------------------------------------------------------------------- /ent/enttest/enttest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/enttest/enttest.go -------------------------------------------------------------------------------- /ent/fiatcurrency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency.go -------------------------------------------------------------------------------- /ent/fiatcurrency/fiatcurrency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency/fiatcurrency.go -------------------------------------------------------------------------------- /ent/fiatcurrency/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency/where.go -------------------------------------------------------------------------------- /ent/fiatcurrency_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency_create.go -------------------------------------------------------------------------------- /ent/fiatcurrency_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency_delete.go -------------------------------------------------------------------------------- /ent/fiatcurrency_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency_query.go -------------------------------------------------------------------------------- /ent/fiatcurrency_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/fiatcurrency_update.go -------------------------------------------------------------------------------- /ent/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/generate.go -------------------------------------------------------------------------------- /ent/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/hook/hook.go -------------------------------------------------------------------------------- /ent/identityverificationrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest.go -------------------------------------------------------------------------------- /ent/identityverificationrequest/identityverificationrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest/identityverificationrequest.go -------------------------------------------------------------------------------- /ent/identityverificationrequest/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest/where.go -------------------------------------------------------------------------------- /ent/identityverificationrequest_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest_create.go -------------------------------------------------------------------------------- /ent/identityverificationrequest_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest_delete.go -------------------------------------------------------------------------------- /ent/identityverificationrequest_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest_query.go -------------------------------------------------------------------------------- /ent/identityverificationrequest_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/identityverificationrequest_update.go -------------------------------------------------------------------------------- /ent/institution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution.go -------------------------------------------------------------------------------- /ent/institution/institution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution/institution.go -------------------------------------------------------------------------------- /ent/institution/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution/where.go -------------------------------------------------------------------------------- /ent/institution_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution_create.go -------------------------------------------------------------------------------- /ent/institution_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution_delete.go -------------------------------------------------------------------------------- /ent/institution_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution_query.go -------------------------------------------------------------------------------- /ent/institution_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/institution_update.go -------------------------------------------------------------------------------- /ent/kybprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile.go -------------------------------------------------------------------------------- /ent/kybprofile/kybprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile/kybprofile.go -------------------------------------------------------------------------------- /ent/kybprofile/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile/where.go -------------------------------------------------------------------------------- /ent/kybprofile_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile_create.go -------------------------------------------------------------------------------- /ent/kybprofile_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile_delete.go -------------------------------------------------------------------------------- /ent/kybprofile_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile_query.go -------------------------------------------------------------------------------- /ent/kybprofile_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/kybprofile_update.go -------------------------------------------------------------------------------- /ent/linkedaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress.go -------------------------------------------------------------------------------- /ent/linkedaddress/linkedaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress/linkedaddress.go -------------------------------------------------------------------------------- /ent/linkedaddress/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress/where.go -------------------------------------------------------------------------------- /ent/linkedaddress_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress_create.go -------------------------------------------------------------------------------- /ent/linkedaddress_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress_delete.go -------------------------------------------------------------------------------- /ent/linkedaddress_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress_query.go -------------------------------------------------------------------------------- /ent/linkedaddress_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/linkedaddress_update.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment/lockorderfulfillment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment/lockorderfulfillment.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment/where.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment_create.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment_delete.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment_query.go -------------------------------------------------------------------------------- /ent/lockorderfulfillment_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockorderfulfillment_update.go -------------------------------------------------------------------------------- /ent/lockpaymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder.go -------------------------------------------------------------------------------- /ent/lockpaymentorder/lockpaymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder/lockpaymentorder.go -------------------------------------------------------------------------------- /ent/lockpaymentorder/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder/where.go -------------------------------------------------------------------------------- /ent/lockpaymentorder_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder_create.go -------------------------------------------------------------------------------- /ent/lockpaymentorder_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder_delete.go -------------------------------------------------------------------------------- /ent/lockpaymentorder_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder_query.go -------------------------------------------------------------------------------- /ent/lockpaymentorder_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/lockpaymentorder_update.go -------------------------------------------------------------------------------- /ent/migrate/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/.DS_Store -------------------------------------------------------------------------------- /ent/migrate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/main.go -------------------------------------------------------------------------------- /ent/migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrate.go -------------------------------------------------------------------------------- /ent/migrate/migrations/20240118234246_initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240118234246_initial.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240130122324_order_from_address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240130122324_order_from_address.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240202010744_fees_on_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240202010744_fees_on_order.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240207044652_receive_address_tx_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240207044652_receive_address_tx_hash.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240214041318_order_settled_percent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240214041318_order_settled_percent.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240217095711_add_protocol_fee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240217095711_add_protocol_fee.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240220003618_add_is_kyb_verified.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240220003618_add_is_kyb_verified.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240326145227_has_early_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240326145227_has_early_access.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240404065157_add_gateway_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240404065157_add_gateway_id.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240404231425_add_fee_to_network.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240404231425_add_fee_to_network.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240414002738_payment_order_block_number.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240414002738_payment_order_block_number.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240416055001_chain_id_hex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240416055001_chain_id_hex.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240421230634_add_return_address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240421230634_add_return_address.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240610130003_add_transaction_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240610130003_add_transaction_log.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240613025318_network_gateway_address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240613025318_network_gateway_address.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240613142908_add_institution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240613142908_add_institution.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240613143010_ngn_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240613143010_ngn_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240626125532_sender_order_tokens.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240626125532_sender_order_tokens.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240807013441_add_psp_to_fulfillment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240807013441_add_psp_to_fulfillment.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240820211511_unique_gateway_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240820211511_unique_gateway_id.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240820215151_multi_fulfillments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240820215151_multi_fulfillments.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240822020854_fee_percent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240822020854_fee_percent.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831223804_add_fiat_currencies_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831223804_add_fiat_currencies_1.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831223854_kes_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831223854_kes_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831231010_ugx_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831231010_ugx_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831231410_tzs_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831231410_tzs_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831231510_xofben_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831231510_xofben_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831231600_xofciv_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831231600_xofciv_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240831235010_ghs_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240831235010_ghs_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240905170202_sender_provider_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240905170202_sender_provider_id.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240919231535_gateway_id_not_unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240919231535_gateway_id_not_unique.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921140012_lockpaymentorder_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921140012_lockpaymentorder_indexes.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921162100_paymentorder_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921162100_paymentorder_triggers.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921194100_fix_paymentorder_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921194100_fix_paymentorder_triggers.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921200000_fix_round_func.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921200000_fix_round_func.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921203200_fix_round_func_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921203200_fix_round_func_2.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921215500_fix_round_func_3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921215500_fix_round_func_3.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921224500_fix_round_func_4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921224500_fix_round_func_4.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240921225500_fix_round_func_5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240921225500_fix_round_func_5.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240924051600_fix_round_func_6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240924051600_fix_round_func_6.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20240926223529_id_verification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20240926223529_id_verification.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20241011010524_linked_addresses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20241011010524_linked_addresses.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20241226183354_add_reference.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20241226183354_add_reference.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250205002723_lof_optional_txid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250205002723_lof_optional_txid.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250220014823_aa_to_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250220014823_aa_to_db.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250221023922_token_base_currency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250221023922_token_base_currency.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250308113133_multi_currency_schema_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250308113133_multi_currency_schema_1.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250308153810_multi_currency_data_migrate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250308153810_multi_currency_data_migrate.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250308161319_multi_currency_schema_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250308161319_multi_currency_schema_2.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250311055352_multi_currency_schema_3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250311055352_multi_currency_schema_3.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250425202927_rate_slippage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250425202927_rate_slippage.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250505033200_tzs_bank_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250505033200_tzs_bank_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250505033210_ugx_bank_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250505033210_ugx_bank_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250510231545_order_metadata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250510231545_order_metadata.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250517004500_brl_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250517004500_brl_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250608014647_engine_bump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250608014647_engine_bump.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250626085120_kyb_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250626085120_kyb_schema.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250704022235_payment_webhook.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250704022235_payment_webhook.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250721051708_add_message_hash_and_protocol_fee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250721051708_add_message_hash_and_protocol_fee.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250721080600_update_payment_order_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250721080600_update_payment_order_triggers.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250801142901_add_provider_currencies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250801142901_add_provider_currencies.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250904102613_add_network_unique_to_provider_order_token.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250904102613_add_network_unique_to_provider_order_token.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250918114527_add_amount_in_usd_to_payment_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250918114527_add_amount_in_usd_to_payment_tables.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250925000000_add_kyb_rejection_comment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250925000000_add_kyb_rejection_comment.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20250929152701_mwk_institutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20250929152701_mwk_institutions.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20251127160716_provider_fiat_accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20251127160716_provider_fiat_accounts.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20251127162259_add_min_max_otc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20251127162259_add_min_max_otc.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/20251205013057_add_max_fee_cap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/20251205013057_add_max_fee_cap.sql -------------------------------------------------------------------------------- /ent/migrate/migrations/atlas.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/migrations/atlas.sum -------------------------------------------------------------------------------- /ent/migrate/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/migrate/schema.go -------------------------------------------------------------------------------- /ent/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/mutation.go -------------------------------------------------------------------------------- /ent/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network.go -------------------------------------------------------------------------------- /ent/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network/network.go -------------------------------------------------------------------------------- /ent/network/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network/where.go -------------------------------------------------------------------------------- /ent/network_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network_create.go -------------------------------------------------------------------------------- /ent/network_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network_delete.go -------------------------------------------------------------------------------- /ent/network_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network_query.go -------------------------------------------------------------------------------- /ent/network_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/network_update.go -------------------------------------------------------------------------------- /ent/paymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder.go -------------------------------------------------------------------------------- /ent/paymentorder/paymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder/paymentorder.go -------------------------------------------------------------------------------- /ent/paymentorder/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder/where.go -------------------------------------------------------------------------------- /ent/paymentorder_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder_create.go -------------------------------------------------------------------------------- /ent/paymentorder_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder_delete.go -------------------------------------------------------------------------------- /ent/paymentorder_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder_query.go -------------------------------------------------------------------------------- /ent/paymentorder_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorder_update.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient/paymentorderrecipient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient/paymentorderrecipient.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient/where.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient_create.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient_delete.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient_query.go -------------------------------------------------------------------------------- /ent/paymentorderrecipient_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentorderrecipient_update.go -------------------------------------------------------------------------------- /ent/paymentwebhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook.go -------------------------------------------------------------------------------- /ent/paymentwebhook/paymentwebhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook/paymentwebhook.go -------------------------------------------------------------------------------- /ent/paymentwebhook/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook/where.go -------------------------------------------------------------------------------- /ent/paymentwebhook_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook_create.go -------------------------------------------------------------------------------- /ent/paymentwebhook_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook_delete.go -------------------------------------------------------------------------------- /ent/paymentwebhook_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook_query.go -------------------------------------------------------------------------------- /ent/paymentwebhook_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/paymentwebhook_update.go -------------------------------------------------------------------------------- /ent/predicate/predicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/predicate/predicate.go -------------------------------------------------------------------------------- /ent/providercurrencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies.go -------------------------------------------------------------------------------- /ent/providercurrencies/providercurrencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies/providercurrencies.go -------------------------------------------------------------------------------- /ent/providercurrencies/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies/where.go -------------------------------------------------------------------------------- /ent/providercurrencies_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies_create.go -------------------------------------------------------------------------------- /ent/providercurrencies_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies_delete.go -------------------------------------------------------------------------------- /ent/providercurrencies_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies_query.go -------------------------------------------------------------------------------- /ent/providercurrencies_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providercurrencies_update.go -------------------------------------------------------------------------------- /ent/providerfiataccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount.go -------------------------------------------------------------------------------- /ent/providerfiataccount/providerfiataccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount/providerfiataccount.go -------------------------------------------------------------------------------- /ent/providerfiataccount/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount/where.go -------------------------------------------------------------------------------- /ent/providerfiataccount_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount_create.go -------------------------------------------------------------------------------- /ent/providerfiataccount_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount_delete.go -------------------------------------------------------------------------------- /ent/providerfiataccount_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount_query.go -------------------------------------------------------------------------------- /ent/providerfiataccount_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerfiataccount_update.go -------------------------------------------------------------------------------- /ent/providerordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken.go -------------------------------------------------------------------------------- /ent/providerordertoken/providerordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken/providerordertoken.go -------------------------------------------------------------------------------- /ent/providerordertoken/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken/where.go -------------------------------------------------------------------------------- /ent/providerordertoken_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken_create.go -------------------------------------------------------------------------------- /ent/providerordertoken_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken_delete.go -------------------------------------------------------------------------------- /ent/providerordertoken_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken_query.go -------------------------------------------------------------------------------- /ent/providerordertoken_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerordertoken_update.go -------------------------------------------------------------------------------- /ent/providerprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile.go -------------------------------------------------------------------------------- /ent/providerprofile/providerprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile/providerprofile.go -------------------------------------------------------------------------------- /ent/providerprofile/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile/where.go -------------------------------------------------------------------------------- /ent/providerprofile_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile_create.go -------------------------------------------------------------------------------- /ent/providerprofile_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile_delete.go -------------------------------------------------------------------------------- /ent/providerprofile_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile_query.go -------------------------------------------------------------------------------- /ent/providerprofile_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerprofile_update.go -------------------------------------------------------------------------------- /ent/providerrating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating.go -------------------------------------------------------------------------------- /ent/providerrating/providerrating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating/providerrating.go -------------------------------------------------------------------------------- /ent/providerrating/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating/where.go -------------------------------------------------------------------------------- /ent/providerrating_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating_create.go -------------------------------------------------------------------------------- /ent/providerrating_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating_delete.go -------------------------------------------------------------------------------- /ent/providerrating_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating_query.go -------------------------------------------------------------------------------- /ent/providerrating_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/providerrating_update.go -------------------------------------------------------------------------------- /ent/provisionbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket.go -------------------------------------------------------------------------------- /ent/provisionbucket/provisionbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket/provisionbucket.go -------------------------------------------------------------------------------- /ent/provisionbucket/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket/where.go -------------------------------------------------------------------------------- /ent/provisionbucket_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket_create.go -------------------------------------------------------------------------------- /ent/provisionbucket_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket_delete.go -------------------------------------------------------------------------------- /ent/provisionbucket_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket_query.go -------------------------------------------------------------------------------- /ent/provisionbucket_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/provisionbucket_update.go -------------------------------------------------------------------------------- /ent/receiveaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress.go -------------------------------------------------------------------------------- /ent/receiveaddress/receiveaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress/receiveaddress.go -------------------------------------------------------------------------------- /ent/receiveaddress/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress/where.go -------------------------------------------------------------------------------- /ent/receiveaddress_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress_create.go -------------------------------------------------------------------------------- /ent/receiveaddress_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress_delete.go -------------------------------------------------------------------------------- /ent/receiveaddress_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress_query.go -------------------------------------------------------------------------------- /ent/receiveaddress_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/receiveaddress_update.go -------------------------------------------------------------------------------- /ent/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/runtime.go -------------------------------------------------------------------------------- /ent/runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/runtime/runtime.go -------------------------------------------------------------------------------- /ent/schema/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/apikey.go -------------------------------------------------------------------------------- /ent/schema/beneficialowner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/beneficialowner.go -------------------------------------------------------------------------------- /ent/schema/fiatcurrency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/fiatcurrency.go -------------------------------------------------------------------------------- /ent/schema/identityverificationrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/identityverificationrequest.go -------------------------------------------------------------------------------- /ent/schema/institution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/institution.go -------------------------------------------------------------------------------- /ent/schema/kybprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/kybprofile.go -------------------------------------------------------------------------------- /ent/schema/linkedaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/linkedaddress.go -------------------------------------------------------------------------------- /ent/schema/lockorderfulfillment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/lockorderfulfillment.go -------------------------------------------------------------------------------- /ent/schema/lockpaymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/lockpaymentorder.go -------------------------------------------------------------------------------- /ent/schema/mixins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/mixins.go -------------------------------------------------------------------------------- /ent/schema/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/network.go -------------------------------------------------------------------------------- /ent/schema/paymentorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/paymentorder.go -------------------------------------------------------------------------------- /ent/schema/paymentorderrecipient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/paymentorderrecipient.go -------------------------------------------------------------------------------- /ent/schema/paymentwebhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/paymentwebhook.go -------------------------------------------------------------------------------- /ent/schema/providercurrencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/providercurrencies.go -------------------------------------------------------------------------------- /ent/schema/providerfiataccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/providerfiataccount.go -------------------------------------------------------------------------------- /ent/schema/providerordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/providerordertoken.go -------------------------------------------------------------------------------- /ent/schema/providerprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/providerprofile.go -------------------------------------------------------------------------------- /ent/schema/providerrating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/providerrating.go -------------------------------------------------------------------------------- /ent/schema/provisionbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/provisionbucket.go -------------------------------------------------------------------------------- /ent/schema/receiveaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/receiveaddress.go -------------------------------------------------------------------------------- /ent/schema/senderordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/senderordertoken.go -------------------------------------------------------------------------------- /ent/schema/senderprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/senderprofile.go -------------------------------------------------------------------------------- /ent/schema/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/token.go -------------------------------------------------------------------------------- /ent/schema/transactionlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/transactionlog.go -------------------------------------------------------------------------------- /ent/schema/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/user.go -------------------------------------------------------------------------------- /ent/schema/verificationtoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/verificationtoken.go -------------------------------------------------------------------------------- /ent/schema/webhookretryattempt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/schema/webhookretryattempt.go -------------------------------------------------------------------------------- /ent/senderordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken.go -------------------------------------------------------------------------------- /ent/senderordertoken/senderordertoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken/senderordertoken.go -------------------------------------------------------------------------------- /ent/senderordertoken/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken/where.go -------------------------------------------------------------------------------- /ent/senderordertoken_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken_create.go -------------------------------------------------------------------------------- /ent/senderordertoken_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken_delete.go -------------------------------------------------------------------------------- /ent/senderordertoken_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken_query.go -------------------------------------------------------------------------------- /ent/senderordertoken_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderordertoken_update.go -------------------------------------------------------------------------------- /ent/senderprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile.go -------------------------------------------------------------------------------- /ent/senderprofile/senderprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile/senderprofile.go -------------------------------------------------------------------------------- /ent/senderprofile/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile/where.go -------------------------------------------------------------------------------- /ent/senderprofile_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile_create.go -------------------------------------------------------------------------------- /ent/senderprofile_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile_delete.go -------------------------------------------------------------------------------- /ent/senderprofile_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile_query.go -------------------------------------------------------------------------------- /ent/senderprofile_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/senderprofile_update.go -------------------------------------------------------------------------------- /ent/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token.go -------------------------------------------------------------------------------- /ent/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token/token.go -------------------------------------------------------------------------------- /ent/token/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token/where.go -------------------------------------------------------------------------------- /ent/token_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token_create.go -------------------------------------------------------------------------------- /ent/token_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token_delete.go -------------------------------------------------------------------------------- /ent/token_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token_query.go -------------------------------------------------------------------------------- /ent/token_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/token_update.go -------------------------------------------------------------------------------- /ent/transactionlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog.go -------------------------------------------------------------------------------- /ent/transactionlog/transactionlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog/transactionlog.go -------------------------------------------------------------------------------- /ent/transactionlog/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog/where.go -------------------------------------------------------------------------------- /ent/transactionlog_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog_create.go -------------------------------------------------------------------------------- /ent/transactionlog_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog_delete.go -------------------------------------------------------------------------------- /ent/transactionlog_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog_query.go -------------------------------------------------------------------------------- /ent/transactionlog_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/transactionlog_update.go -------------------------------------------------------------------------------- /ent/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/tx.go -------------------------------------------------------------------------------- /ent/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user.go -------------------------------------------------------------------------------- /ent/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user/user.go -------------------------------------------------------------------------------- /ent/user/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user/where.go -------------------------------------------------------------------------------- /ent/user_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user_create.go -------------------------------------------------------------------------------- /ent/user_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user_delete.go -------------------------------------------------------------------------------- /ent/user_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user_query.go -------------------------------------------------------------------------------- /ent/user_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/user_update.go -------------------------------------------------------------------------------- /ent/verificationtoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken.go -------------------------------------------------------------------------------- /ent/verificationtoken/verificationtoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken/verificationtoken.go -------------------------------------------------------------------------------- /ent/verificationtoken/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken/where.go -------------------------------------------------------------------------------- /ent/verificationtoken_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken_create.go -------------------------------------------------------------------------------- /ent/verificationtoken_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken_delete.go -------------------------------------------------------------------------------- /ent/verificationtoken_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken_query.go -------------------------------------------------------------------------------- /ent/verificationtoken_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/verificationtoken_update.go -------------------------------------------------------------------------------- /ent/webhookretryattempt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt.go -------------------------------------------------------------------------------- /ent/webhookretryattempt/webhookretryattempt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt/webhookretryattempt.go -------------------------------------------------------------------------------- /ent/webhookretryattempt/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt/where.go -------------------------------------------------------------------------------- /ent/webhookretryattempt_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt_create.go -------------------------------------------------------------------------------- /ent/webhookretryattempt_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt_delete.go -------------------------------------------------------------------------------- /ent/webhookretryattempt_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt_query.go -------------------------------------------------------------------------------- /ent/webhookretryattempt_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/ent/webhookretryattempt_update.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/go.sum -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/init.sh -------------------------------------------------------------------------------- /install_atlas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/install_atlas.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/main.go -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/redis.conf -------------------------------------------------------------------------------- /routers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/index.go -------------------------------------------------------------------------------- /routers/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/middleware/auth.go -------------------------------------------------------------------------------- /routers/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/middleware/cors.go -------------------------------------------------------------------------------- /routers/middleware/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/middleware/request.go -------------------------------------------------------------------------------- /routers/middleware/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/middleware/request_test.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/routers/router.go -------------------------------------------------------------------------------- /scripts/db_data/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/db_data/dump.sql -------------------------------------------------------------------------------- /scripts/db_data/functions/calculate_total_amount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/db_data/functions/calculate_total_amount.sql -------------------------------------------------------------------------------- /scripts/db_data/functions/check_payment_order_amount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/db_data/functions/check_payment_order_amount.sql -------------------------------------------------------------------------------- /scripts/import_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/import_db.sh -------------------------------------------------------------------------------- /scripts/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/pre-commit.sh -------------------------------------------------------------------------------- /scripts/seed-db/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/scripts/seed-db/main.go -------------------------------------------------------------------------------- /services/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/abi.go -------------------------------------------------------------------------------- /services/api_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/api_key.go -------------------------------------------------------------------------------- /services/balance_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/balance_management.go -------------------------------------------------------------------------------- /services/blockscout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/blockscout.go -------------------------------------------------------------------------------- /services/common/indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/common/indexer.go -------------------------------------------------------------------------------- /services/common/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/common/order.go -------------------------------------------------------------------------------- /services/contracts/ERC20Token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/contracts/ERC20Token.go -------------------------------------------------------------------------------- /services/contracts/EntryPoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/contracts/EntryPoint.go -------------------------------------------------------------------------------- /services/contracts/Gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/contracts/Gateway.go -------------------------------------------------------------------------------- /services/contracts/SimpleAccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/contracts/SimpleAccount.go -------------------------------------------------------------------------------- /services/contracts/SimpleAccountFactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/contracts/SimpleAccountFactory.go -------------------------------------------------------------------------------- /services/email/brevo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/brevo.go -------------------------------------------------------------------------------- /services/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/email.go -------------------------------------------------------------------------------- /services/email/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/email_test.go -------------------------------------------------------------------------------- /services/email/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/interface.go -------------------------------------------------------------------------------- /services/email/mailgun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/mailgun.go -------------------------------------------------------------------------------- /services/email/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/provider.go -------------------------------------------------------------------------------- /services/email/sendgrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/email/sendgrid.go -------------------------------------------------------------------------------- /services/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/engine.go -------------------------------------------------------------------------------- /services/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/engine_test.go -------------------------------------------------------------------------------- /services/etherscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/etherscan.go -------------------------------------------------------------------------------- /services/etherscan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/etherscan_test.go -------------------------------------------------------------------------------- /services/indexer/evm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/indexer/evm.go -------------------------------------------------------------------------------- /services/indexer/tron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/indexer/tron.go -------------------------------------------------------------------------------- /services/kyc/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/errors/errors.go -------------------------------------------------------------------------------- /services/kyc/smile/id_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/smile/id_types.json -------------------------------------------------------------------------------- /services/kyc/smile/id_types_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/smile/id_types_schema.json -------------------------------------------------------------------------------- /services/kyc/smile/id_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/smile/id_types_test.go -------------------------------------------------------------------------------- /services/kyc/smile/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/smile/index.go -------------------------------------------------------------------------------- /services/kyc/smile/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/kyc/smile/index_test.go -------------------------------------------------------------------------------- /services/order/evm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/order/evm.go -------------------------------------------------------------------------------- /services/order/tron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/order/tron.go -------------------------------------------------------------------------------- /services/priority_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/priority_queue.go -------------------------------------------------------------------------------- /services/priority_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/priority_queue_test.go -------------------------------------------------------------------------------- /services/receive_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/receive_address.go -------------------------------------------------------------------------------- /services/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/slack.go -------------------------------------------------------------------------------- /services/slack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/slack_test.go -------------------------------------------------------------------------------- /services/turnstile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/services/turnstile.go -------------------------------------------------------------------------------- /storage/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/storage/database.go -------------------------------------------------------------------------------- /storage/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/storage/redis.go -------------------------------------------------------------------------------- /tasks/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/tasks/tasks.go -------------------------------------------------------------------------------- /tasks/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/tasks/tasks_test.go -------------------------------------------------------------------------------- /types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/types/types.go -------------------------------------------------------------------------------- /utils/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/crypto/crypto.go -------------------------------------------------------------------------------- /utils/crypto/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/crypto/crypto_test.go -------------------------------------------------------------------------------- /utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/http.go -------------------------------------------------------------------------------- /utils/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/logger/logger.go -------------------------------------------------------------------------------- /utils/rpc_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/rpc_events.go -------------------------------------------------------------------------------- /utils/test/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/test/db.go -------------------------------------------------------------------------------- /utils/test/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/test/mocks.go -------------------------------------------------------------------------------- /utils/test/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/test/test.env -------------------------------------------------------------------------------- /utils/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/test/test.go -------------------------------------------------------------------------------- /utils/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/token/token.go -------------------------------------------------------------------------------- /utils/userop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/userop.go -------------------------------------------------------------------------------- /utils/userop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/userop_test.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paycrest/aggregator/HEAD/utils/utils_test.go --------------------------------------------------------------------------------