From 2f57623529b751d3a82e95b9bda77d8b94144770 Mon Sep 17 00:00:00 2001 From: sukunetsiz Date: Fri, 14 Feb 2025 02:06:06 +0300 Subject: [PATCH] Update ROADMAP.md --- app/Http/Controllers/MonetaController.php | 13 -- docs/ROADMAP.md | 6 +- public/css/styles.css | 113 ------------------ resources/views/components/left-bar.blade.php | 1 - .../views/components/right-bar.blade.php | 1 - resources/views/moneta/index.blade.php | 47 -------- .../views/moneta/moneta-results.blade.php | 0 resources/views/moneta/payment.blade.php | 0 resources/views/moneta/result.blade.php | 0 resources/views/return-addresses.blade.php | 2 +- routes/web.php | 4 - 11 files changed, 4 insertions(+), 183 deletions(-) delete mode 100644 app/Http/Controllers/MonetaController.php mode change 100644 => 100755 resources/views/components/right-bar.blade.php delete mode 100644 resources/views/moneta/index.blade.php delete mode 100644 resources/views/moneta/moneta-results.blade.php delete mode 100644 resources/views/moneta/payment.blade.php delete mode 100644 resources/views/moneta/result.blade.php mode change 100644 => 100755 resources/views/return-addresses.blade.php diff --git a/app/Http/Controllers/MonetaController.php b/app/Http/Controllers/MonetaController.php deleted file mode 100644 index ae8a751..0000000 --- a/app/Http/Controllers/MonetaController.php +++ /dev/null @@ -1,13 +0,0 @@ -💰 Addresses
  • 📈 Vendors
  • 🌟 Be a Vendor
  • -
  • 🎲 Moneta ⛔
  • 🤝🏻 References
  • @if(auth()->user()->isAdmin())
  • 👑 AdminPanel
  • diff --git a/resources/views/components/right-bar.blade.php b/resources/views/components/right-bar.blade.php old mode 100644 new mode 100755 index d4e61a7..4fea597 --- a/resources/views/components/right-bar.blade.php +++ b/resources/views/components/right-bar.blade.php @@ -5,7 +5,6 @@
  • Account 🖥️
  • Support 🛠️
  • Messages 💬
  • -
  • ⛔ Reviews 👍
  • Rules ⚖️
  • Guides 🧭
  • @if(auth()->user()->isVendor()) diff --git a/resources/views/moneta/index.blade.php b/resources/views/moneta/index.blade.php deleted file mode 100644 index e82a5fb..0000000 --- a/resources/views/moneta/index.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends('layouts.app') -@section('content') -
    -
    -
    -

    Moneta Block Hash Game

    -
    -
    -
    -

    - To play this game, you must have at least one Monero (XMR) address registered in your account. - Please make sure to add your Monero address before starting the game. - If you haven't added an address yet, you can add it from the Addresses tab on the left side of the screen. -

    -
    -
    -

    How to Play

    -
      -
    • Choose either the first 32 or last 32 characters of the upcoming Monero block hash for your bet.
    • -
    • When the block is mined, all letters are removed from your chosen half, and the remaining numbers are added together digit by digit.
    • -
    • The same process happens with the other half of the block hash.
    • -
    • You win if your chosen half has the higher sum!
    • -
    -
    -
    -

    Game Rules & Payouts

    -
      -
    • Winning Payout: 1.95 times your bet amount
    • -
    • Tie Game: Your entire bet is returned
    • -
    • Block Selection: Your game is always played on the block that comes after your bet is included in the blockchain
    • -
    • Game Duration: Approximately 2 minutes (average Monero block time)
    • -
    -
    -
    -

    Fair Game Guarantee

    -

    - This game is powered by the Monero blockchain's random block hashes, making it completely fair and unriggable. Every game can be verified using simple mathematics, and the outcomes are determined by decentralized miners who have no control over the generated block hashes. -

    -
    - -
    -
    -
    -@endsection diff --git a/resources/views/moneta/moneta-results.blade.php b/resources/views/moneta/moneta-results.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/moneta/payment.blade.php b/resources/views/moneta/payment.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/moneta/result.blade.php b/resources/views/moneta/result.blade.php deleted file mode 100644 index e69de29..0000000 diff --git a/resources/views/return-addresses.blade.php b/resources/views/return-addresses.blade.php old mode 100644 new mode 100755 index 6885dd1..46c7036 --- a/resources/views/return-addresses.blade.php +++ b/resources/views/return-addresses.blade.php @@ -16,7 +16,7 @@ @endif
    - To shop at {{ config('app.name') }} or play Moneta, you need to add at least one Monero address. Refunds will be made to this address. For your security, use a subaddress instead of your main address and be careful not to share this address elsewhere. Main Monero addresses usually start with "4", while subaddresses start with "8". + To shop at {{ config('app.name') }}, you need to add at least one Monero address. Refunds will be made to this address. For your security, use a subaddress instead of your main address and be careful not to share this address elsewhere. Main Monero addresses usually start with "4", while subaddresses start with "8".
    diff --git a/routes/web.php b/routes/web.php index d5ab60d..e57e8dd 100755 --- a/routes/web.php +++ b/routes/web.php @@ -13,7 +13,6 @@ use App\Http\Controllers\AdminController; use App\Http\Controllers\VendorController; use App\Http\Controllers\ReturnAddressController; -use App\Http\Controllers\MonetaController; use App\Http\Controllers\SupportController; use App\Http\Controllers\GuidesController; use App\Http\Controllers\NotificationController; @@ -128,9 +127,6 @@ Route::get('/support/{supportRequest:ticket_id}', [SupportController::class, 'show'])->name('support.show'); Route::post('/support/{supportRequest:ticket_id}/reply', [SupportController::class, 'reply'])->name('support.reply'); - // Moneta Game route - Route::get('/moneta', [MonetaController::class, 'index'])->name('moneta.index'); - // Rules route Route::get('/rules', [RulesController::class, 'index'])->name('rules');