[$200] ⏩ Apollo Exchange - Crypto to Tebex ⏪ - Automatically accept crypto for store credit

bfb_da_packman

Banned
Feedback score
0
Posts
12
Reactions
15
Resources
0
Hi. I'm selling the source code to my crypto exchange, which allows players to pay crypto in exchange for store credit (Tebex Gift Cards).

The actual store configuration is quite simple to setup, you just have to plug in a few credentials.

The app is built on a python + django backend and nuxtjs frontend. As installation can be complex for most, I'm offering to setup your VPS/dedi and the crypto exchange for no extra charge.

It's being used by a few popular servers, and the client list is growing fast. Here's a few:
https://crypto.vipermc.net
https://crypto.akuma.gg
https://crypto.akumamc.net
https://crypto.holypvp.net
https://crypto.cavepvp.org
https://crypto.pvplab.org
https://crypto.pvpwars.net
https://crypto.skybounds.com

Media





https://imgur.com/2E9oI8m
https://imgur.com/DRRWAPm
https://imgur.com/toKIrtU

Features
  • Automatically accept crypto-currency directly into your wallets
  • Supports almost all crypto-currencies
  • Clean and sleek UI
  • Only requires an email to initiate a transaction
  • Scannable QR code
  • Emails transaction link to buyers
  • Full SSL support
  • Minimal store configuration
  • Automatic payment status refreshing
  • Transaction history (stored in browser local storage)
  • Extra credit settings, for doing sales/promos
Price
SRC $200
SRC + redesign $350

You receive
  • The full un-branded source code to the crypto exchange.
  • A complete redesign for your brand, if needed, for no extra charge.
  • Full software installation on your VPS/dedi, if needed, for no extra charge.
Contact
bfb_da_packman on telegram
 
Type
Offering
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Gambler

this xf2 update is mad poggers.
Supreme
Feedback score
10
Posts
263
Reactions
95
Resources
0
Proof that this is your code?
 

bfb_da_packman

Banned
Feedback score
0
Posts
12
Reactions
15
Resources
0
Could you provide any code snippets?
Sure... here's the code for the route that returns the exchange rate for a currency.
Code:
    path('api/store/exchange-rate', views.GetExchangeRateView.as_view()),
Code:
class GetExchangeRateView(generics.GenericAPIView):
    permission_classes = [AllowAny]

    def get(self, request, *args, **kwargs):
        if 'currency' not in request.query_params:
            return helpers.bad_request()

        if request.query_params['currency'] not in StoreCurrency:
           return HttpResponse(content='Invalid currency', status=400)

        currency = request.query_params['currency']

        exchange_rate = apps.get_app_config('api').exchange_rates[currency]
        if exchange_rate is None:
            return HttpResponse(content='Server error', status=500)

        return JsonResponse({'rate': exchange_rate})

Here's the backend and frontend running side by side as well...
a6c53d32ddbb0ef283db7786e7c20125.png

3af31fb050e3778485e977d8a02fa897.png
 
Last edited:
Banned forever. Reason: Ban Evading (joeleoli, https://builtbybit.com/members/joeleoli.43250/)

bfb_da_packman

Banned
Feedback score
0
Posts
12
Reactions
15
Resources
0
500$ for that ???? when you can literally setup a coinbase api or paymentwall or bitpay ????????????????????????????
go for it buddy
 
Banned forever. Reason: Ban Evading (joeleoli, https://builtbybit.com/members/joeleoli.43250/)

bfb_da_packman

Banned
Feedback score
0
Posts
12
Reactions
15
Resources
0
  • Added transaction history using browser local storage
  • Added an "get extra credit" system for promotions
More clients too
0035998edddb22e338ba0c71160494cd.png

be6caaba178df6a3ef464b3f1d547694.png

upload_2021-8-24_2-7-45.png
 

Attachments

  • upload_2021-8-24_2-7-45.png
    upload_2021-8-24_2-7-45.png
    472.3 KB · Views: 433
Banned forever. Reason: Ban Evading (joeleoli, https://builtbybit.com/members/joeleoli.43250/)
Top