Spaces:
Running
Running
Add 2 files
Browse files- index.html +371 -1
- prompts.txt +2 -1
index.html
CHANGED
@@ -482,5 +482,375 @@
|
|
482 |
<div class="text-sm text-gray-500">
|
483 |
Balance: <span id="swapBalance">70,000</span> USDT
|
484 |
</div>
|
485 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
</html>
|
|
|
482 |
<div class="text-sm text-gray-500">
|
483 |
Balance: <span id="swapBalance">70,000</span> USDT
|
484 |
</div>
|
485 |
+
</div>
|
486 |
+
|
487 |
+
<div class="bg-white p-4 rounded-lg mb-3">
|
488 |
+
<div class="flex justify-between items-center mb-2">
|
489 |
+
<div class="flex items-center">
|
490 |
+
<div class="w-8 h-8 bg-green-100 rounded-full flex items-center justify-center mr-2">
|
491 |
+
<i class="fas fa-wallet text-green-500"></i>
|
492 |
+
</div>
|
493 |
+
<select class="bg-transparent font-medium">
|
494 |
+
<option>USDT</option>
|
495 |
+
<option>BTC</option>
|
496 |
+
<option>ETH</option>
|
497 |
+
</select>
|
498 |
+
</div>
|
499 |
+
<input type="number" class="text-right font-bold text-lg w-24" placeholder="0.00">
|
500 |
+
</div>
|
501 |
+
</div>
|
502 |
+
|
503 |
+
<div class="flex justify-center my-2">
|
504 |
+
<button class="w-10 h-10 bg-gray-200 rounded-full flex items-center justify-center transform rotate-90">
|
505 |
+
<i class="fas fa-exchange-alt text-gray-600"></i>
|
506 |
+
</button>
|
507 |
+
</div>
|
508 |
+
|
509 |
+
<div class="bg-white p-4 rounded-lg">
|
510 |
+
<div class="flex justify-between items-center mb-2">
|
511 |
+
<div class="flex items-center">
|
512 |
+
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center mr-2">
|
513 |
+
<i class="fab fa-bitcoin text-blue-500"></i>
|
514 |
+
</div>
|
515 |
+
<select class="bg-transparent font-medium">
|
516 |
+
<option>BTC</option>
|
517 |
+
<option>ETH</option>
|
518 |
+
<option>USDT</option>
|
519 |
+
</select>
|
520 |
+
</div>
|
521 |
+
<input type="number" class="text-right font-bold text-lg w-24" placeholder="0.00">
|
522 |
+
</div>
|
523 |
+
</div>
|
524 |
+
</div>
|
525 |
+
|
526 |
+
<div class="mb-6">
|
527 |
+
<h3 class="font-medium mb-3">Exchange Rate</h3>
|
528 |
+
<div class="bg-white p-4 rounded-lg">
|
529 |
+
<div class="flex justify-between items-center">
|
530 |
+
<p class="text-gray-500">1 USDT = 0.000023 BTC</p>
|
531 |
+
<button class="text-green-500">
|
532 |
+
<i class="fas fa-sync-alt"></i>
|
533 |
+
</button>
|
534 |
+
</div>
|
535 |
+
</div>
|
536 |
+
</div>
|
537 |
+
|
538 |
+
<button class="btn-primary w-full py-3 rounded-lg text-white font-medium">
|
539 |
+
Confirm Swap
|
540 |
+
</button>
|
541 |
+
</div>
|
542 |
+
|
543 |
+
<!-- Scan Section -->
|
544 |
+
<div id="scanSection" class="section">
|
545 |
+
<div class="flex items-center mb-6">
|
546 |
+
<button onclick="showHomeSection()" class="mr-3 text-gray-500">
|
547 |
+
<i class="fas fa-arrow-left"></i>
|
548 |
+
</button>
|
549 |
+
<h2 class="text-xl font-bold">Scan QR Code</h2>
|
550 |
+
</div>
|
551 |
+
|
552 |
+
<div class="text-center mb-6">
|
553 |
+
<div class="qr-code mb-4">
|
554 |
+
<i class="fas fa-camera text-4xl text-gray-300"></i>
|
555 |
+
</div>
|
556 |
+
<p class="font-medium">Point your camera at a QR code</p>
|
557 |
+
<p class="text-sm text-gray-500 mt-1">To scan and make payments</p>
|
558 |
+
</div>
|
559 |
+
|
560 |
+
<button class="btn-secondary w-full py-3 rounded-lg font-medium mb-4">
|
561 |
+
<i class="fas fa-bolt mr-2"></i> Flashlight
|
562 |
+
</button>
|
563 |
+
|
564 |
+
<div class="bg-gray-50 rounded-xl p-4">
|
565 |
+
<p class="text-sm text-gray-500 mb-2">Or enter address manually</p>
|
566 |
+
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg mb-3" placeholder="Wallet address or $Cashtag">
|
567 |
+
<input type="number" class="w-full px-4 py-3 border border-gray-300 rounded-lg mb-3" placeholder="Amount (optional)">
|
568 |
+
<button class="btn-primary w-full py-3 rounded-lg text-white font-medium">
|
569 |
+
Continue
|
570 |
+
</button>
|
571 |
+
</div>
|
572 |
+
</div>
|
573 |
+
|
574 |
+
<!-- Settings Section -->
|
575 |
+
<div id="settingsSection" class="section">
|
576 |
+
<div class="flex items-center mb-6">
|
577 |
+
<button onclick="showHomeSection()" class="mr-3 text-gray-500">
|
578 |
+
<i class="fas fa-arrow-left"></i>
|
579 |
+
</button>
|
580 |
+
<h2 class="text-xl font-bold">Settings</h2>
|
581 |
+
</div>
|
582 |
+
|
583 |
+
<div class="mb-6">
|
584 |
+
<div class="flex items-center p-4 bg-gray-50 rounded-xl mb-4">
|
585 |
+
<div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mr-3">
|
586 |
+
<i class="fas fa-user text-green-500"></i>
|
587 |
+
</div>
|
588 |
+
<div>
|
589 |
+
<p class="font-medium">John Doe</p>
|
590 |
+
<p class="text-sm text-gray-500">Personal Account</p>
|
591 |
+
</div>
|
592 |
+
</div>
|
593 |
+
|
594 |
+
<h3 class="font-medium mb-3">Account</h3>
|
595 |
+
<div class="space-y-3">
|
596 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
597 |
+
<div class="flex items-center">
|
598 |
+
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
|
599 |
+
<i class="fas fa-user-edit text-blue-500"></i>
|
600 |
+
</div>
|
601 |
+
<p class="font-medium">Profile</p>
|
602 |
+
</div>
|
603 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
604 |
+
</div>
|
605 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
606 |
+
<div class="flex items-center">
|
607 |
+
<div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center mr-3">
|
608 |
+
<i class="fas fa-bell text-purple-500"></i>
|
609 |
+
</div>
|
610 |
+
<p class="font-medium">Notifications</p>
|
611 |
+
</div>
|
612 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
613 |
+
</div>
|
614 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
615 |
+
<div class="flex items-center">
|
616 |
+
<div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center mr-3">
|
617 |
+
<i class="fas fa-lock text-green-500"></i>
|
618 |
+
</div>
|
619 |
+
<p class="font-medium">Privacy</p>
|
620 |
+
</div>
|
621 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
622 |
+
</div>
|
623 |
+
</div>
|
624 |
+
</div>
|
625 |
+
|
626 |
+
<div class="mb-6">
|
627 |
+
<h3 class="font-medium mb-3">Support</h3>
|
628 |
+
<div class="space-y-3">
|
629 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
630 |
+
<div class="flex items-center">
|
631 |
+
<div class="w-10 h-10 bg-orange-100 rounded-full flex items-center justify-center mr-3">
|
632 |
+
<i class="fas fa-question-circle text-orange-500"></i>
|
633 |
+
</div>
|
634 |
+
<p class="font-medium">Help Center</p>
|
635 |
+
</div>
|
636 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
637 |
+
</div>
|
638 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
639 |
+
<div class="flex items-center">
|
640 |
+
<div class="w-10 h-10 bg-red-100 rounded-full flex items-center justify-center mr-3">
|
641 |
+
<i class="fas fa-headset text-red-500"></i>
|
642 |
+
</div>
|
643 |
+
<p class="font-medium">Contact Support</p>
|
644 |
+
</div>
|
645 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
646 |
+
</div>
|
647 |
+
<div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
|
648 |
+
<div class="flex items-center">
|
649 |
+
<div class="w-10 h-10 bg-yellow-100 rounded-full flex items-center justify-center mr-3">
|
650 |
+
<i class="fas fa-file-alt text-yellow-500"></i>
|
651 |
+
</div>
|
652 |
+
<p class="font-medium">Terms & Policies</p>
|
653 |
+
</div>
|
654 |
+
<i class="fas fa-chevron-right text-gray-400"></i>
|
655 |
+
</div>
|
656 |
+
</div>
|
657 |
+
</div>
|
658 |
+
|
659 |
+
<button class="btn-secondary w-full py-3 rounded-lg font-medium">
|
660 |
+
<i class="fas fa-sign-out-alt mr-2"></i> Sign Out
|
661 |
+
</button>
|
662 |
+
|
663 |
+
<div class="text-center text-sm text-gray-500 mt-6">
|
664 |
+
<p>CashApp v2.4.1</p>
|
665 |
+
</div>
|
666 |
+
</div>
|
667 |
+
</main>
|
668 |
+
|
669 |
+
<!-- Bottom Navigation -->
|
670 |
+
<nav class="bg-white border-t border-gray-200 p-3 flex justify-around">
|
671 |
+
<button onclick="showHomeSection()" class="nav-item active flex flex-col items-center text-green-500">
|
672 |
+
<i class="fas fa-home text-lg"></i>
|
673 |
+
<span class="text-xs mt-1">Home</span>
|
674 |
+
</button>
|
675 |
+
<button onclick="showWalletSection()" class="nav-item flex flex-col items-center text-gray-500">
|
676 |
+
<i class="fas fa-wallet text-lg"></i>
|
677 |
+
<span class="text-xs mt-1">Wallet</span>
|
678 |
+
</button>
|
679 |
+
<button class="nav-item flex flex-col items-center text-gray-500">
|
680 |
+
<i class="fas fa-chart-line text-lg"></i>
|
681 |
+
<span class="text-xs mt-1">Stats</span>
|
682 |
+
</button>
|
683 |
+
<button onclick="showSettingsSection()" class="nav-item flex flex-col items-center text-gray-500">
|
684 |
+
<i class="fas fa-cog text-lg"></i>
|
685 |
+
<span class="text-xs mt-1">Settings</span>
|
686 |
+
</button>
|
687 |
+
</nav>
|
688 |
+
</div>
|
689 |
+
|
690 |
+
<!-- Send Money Modal -->
|
691 |
+
<div id="sendModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center p-4 z-50 hidden">
|
692 |
+
<div class="bg-white rounded-2xl w-full max-w-md animate-fade-in">
|
693 |
+
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
|
694 |
+
<h3 class="font-bold text-lg">Send Money</h3>
|
695 |
+
<button onclick="closeModal()" class="text-gray-500">
|
696 |
+
<i class="fas fa-times"></i>
|
697 |
+
</button>
|
698 |
+
</div>
|
699 |
+
|
700 |
+
<div class="p-4">
|
701 |
+
<div class="relative mb-4">
|
702 |
+
<span class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-500">$</span>
|
703 |
+
<input type="number" class="w-full pl-8 pr-3 py-4 border border-gray-300 rounded-lg focus:ring-2 focus:ring-green-500 focus:border-green-500 text-xl" placeholder="0.00">
|
704 |
+
</div>
|
705 |
+
|
706 |
+
<div class="mb-4">
|
707 |
+
<p class="text-sm text-gray-500 mb-2">To</p>
|
708 |
+
<div class="flex items-center space-x-3">
|
709 |
+
<button class="w-12 h-12 bg-gray-200 rounded-full flex items-center justify-center">
|
710 |
+
<i class="fas fa-user-plus text-gray-500"></i>
|
711 |
+
</button>
|
712 |
+
<button class="w-12 h-12 bg-gray-200 rounded-full flex items-center justify-center">
|
713 |
+
<i class="fas fa-qrcode text-gray-500"></i>
|
714 |
+
</button>
|
715 |
+
<input type="text" class="flex-1 px-4 py-3 border border-gray-300 rounded-lg" placeholder="Name, $Cashtag, phone, or email">
|
716 |
+
</div>
|
717 |
+
</div>
|
718 |
+
|
719 |
+
<div class="mb-6">
|
720 |
+
<p class="text-sm text-gray-500 mb-2">For</p>
|
721 |
+
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg" placeholder="What's it for? (optional)">
|
722 |
+
</div>
|
723 |
+
|
724 |
+
<button class="btn-primary w-full py-4 rounded-lg text-white font-medium text-lg">
|
725 |
+
Continue
|
726 |
+
</button>
|
727 |
+
</div>
|
728 |
+
</div>
|
729 |
+
</div>
|
730 |
+
|
731 |
+
<script>
|
732 |
+
// Show home section by default
|
733 |
+
document.addEventListener('DOMContentLoaded', function() {
|
734 |
+
showHomeSection();
|
735 |
+
|
736 |
+
// Setup editable balance
|
737 |
+
const balanceDisplay = document.getElementById('balanceDisplay');
|
738 |
+
const balanceInput = document.getElementById('balanceInput');
|
739 |
+
const usdEquivalent = document.getElementById('usdEquivalent');
|
740 |
+
const walletBalance = document.getElementById('walletBalance');
|
741 |
+
const walletValue = document.getElementById('walletValue');
|
742 |
+
const swapBalance = document.getElementById('swapBalance');
|
743 |
+
|
744 |
+
balanceDisplay.addEventListener('click', function() {
|
745 |
+
balanceDisplay.classList.add('hidden');
|
746 |
+
balanceInput.classList.remove('hidden');
|
747 |
+
balanceInput.focus();
|
748 |
+
balanceInput.select();
|
749 |
+
});
|
750 |
+
|
751 |
+
balanceInput.addEventListener('blur', function() {
|
752 |
+
updateBalance();
|
753 |
+
});
|
754 |
+
|
755 |
+
balanceInput.addEventListener('keypress', function(e) {
|
756 |
+
if (e.key === 'Enter') {
|
757 |
+
updateBalance();
|
758 |
+
}
|
759 |
+
});
|
760 |
+
|
761 |
+
function updateBalance() {
|
762 |
+
let newBalance = balanceInput.value;
|
763 |
+
// Format with commas
|
764 |
+
newBalance = parseFloat(newBalance).toLocaleString('en-US');
|
765 |
+
balanceDisplay.textContent = newBalance;
|
766 |
+
balanceDisplay.classList.remove('hidden');
|
767 |
+
balanceInput.classList.add('hidden');
|
768 |
+
|
769 |
+
// Update all balance displays
|
770 |
+
const numericBalance = parseFloat(balanceInput.value.replace(/,/g, ''));
|
771 |
+
const usdValue = numericBalance.toFixed(2);
|
772 |
+
|
773 |
+
usdEquivalent.textContent = `$${usdValue.toLocaleString('en-US')}`;
|
774 |
+
walletBalance.textContent = `${newBalance} USDT`;
|
775 |
+
walletValue.textContent = `$${usdValue.toLocaleString('en-US')}`;
|
776 |
+
swapBalance.textContent = newBalance;
|
777 |
+
}
|
778 |
+
});
|
779 |
+
|
780 |
+
// Section navigation functions
|
781 |
+
function showHomeSection() {
|
782 |
+
hideAllSections();
|
783 |
+
document.getElementById('homeSection').style.display = 'block';
|
784 |
+
updateNavActive('home');
|
785 |
+
}
|
786 |
+
|
787 |
+
function showWalletSection() {
|
788 |
+
hideAllSections();
|
789 |
+
document.getElementById('walletSection').style.display = 'block';
|
790 |
+
updateNavActive('wallet');
|
791 |
+
}
|
792 |
+
|
793 |
+
function showSecuritySection() {
|
794 |
+
hideAllSections();
|
795 |
+
document.getElementById('securitySection').style.display = 'block';
|
796 |
+
updateNavActive('wallet');
|
797 |
+
}
|
798 |
+
|
799 |
+
function showReceiveSection() {
|
800 |
+
hideAllSections();
|
801 |
+
document.getElementById('receiveSection').style.display = 'block';
|
802 |
+
updateNavActive('home');
|
803 |
+
}
|
804 |
+
|
805 |
+
function showSwapSection() {
|
806 |
+
hideAllSections();
|
807 |
+
document.getElementById('swapSection').style.display = 'block';
|
808 |
+
updateNavActive('home');
|
809 |
+
}
|
810 |
+
|
811 |
+
function showScanSection() {
|
812 |
+
hideAllSections();
|
813 |
+
document.getElementById('scanSection').style.display = 'block';
|
814 |
+
updateNavActive('home');
|
815 |
+
}
|
816 |
+
|
817 |
+
function showSettingsSection() {
|
818 |
+
hideAllSections();
|
819 |
+
document.getElementById('settingsSection').style.display = 'block';
|
820 |
+
updateNavActive('settings');
|
821 |
+
}
|
822 |
+
|
823 |
+
function hideAllSections() {
|
824 |
+
const sections = document.querySelectorAll('.section');
|
825 |
+
sections.forEach(section => {
|
826 |
+
section.style.display = 'none';
|
827 |
+
});
|
828 |
+
}
|
829 |
+
|
830 |
+
function updateNavActive(activeItem) {
|
831 |
+
const navItems = document.querySelectorAll('.nav-item');
|
832 |
+
navItems.forEach(item => {
|
833 |
+
item.classList.remove('active');
|
834 |
+
item.classList.remove('text-green-500');
|
835 |
+
item.classList.add('text-gray-500');
|
836 |
+
});
|
837 |
+
|
838 |
+
const activeNav = document.querySelector(`.nav-item[onclick="show${activeItem.charAt(0).toUpperCase() + activeItem.slice(1)}Section()"]`);
|
839 |
+
if (activeNav) {
|
840 |
+
activeNav.classList.add('active');
|
841 |
+
activeNav.classList.add('text-green-500');
|
842 |
+
activeNav.classList.remove('text-gray-500');
|
843 |
+
}
|
844 |
+
}
|
845 |
+
|
846 |
+
// Modal functions
|
847 |
+
function openModal() {
|
848 |
+
document.getElementById('sendModal').classList.remove('hidden');
|
849 |
+
}
|
850 |
+
|
851 |
+
function closeModal() {
|
852 |
+
document.getElementById('sendModal').classList.add('hidden');
|
853 |
+
}
|
854 |
+
</script>
|
855 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Monday4/daniel-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
856 |
</html>
|
prompts.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
Create a fake cashapp application with a minimum amount of 70000 usdt
|
2 |
Create wallet section and security password
|
3 |
Allow access to receive swap scan invest profile settings done
|
4 |
-
Make balance editable
|
|
|
|
1 |
Create a fake cashapp application with a minimum amount of 70000 usdt
|
2 |
Create wallet section and security password
|
3 |
Allow access to receive swap scan invest profile settings done
|
4 |
+
Make balance editable
|
5 |
+
Refresh
|