▪️Showroom

The Showroom: Your NFT Car Management Hub

The Showroom is your centralized hub for managing and expanding your NFT Car collection in GrabWay. It provides a versatile platform where you can purchase, rent, and lease NFT Cars, giving you the flexibility to build your fleet and maximize your earning potential. Whether you're a collector, trader, or someone looking for passive income, the Showroom offers features that cater to all users.


Random System: The Pack Tab

The Pack Tab introduces an element of excitement, combining strategy with a lottery-like experience.

  • How It Works: Users can purchase a "Pack" for a fixed price of 0.5 BNB, which contains a random NFT Car. The car received from the pack could vary in rarity, attributes, or performance, allowing for potential value discovery. This system creates a fun and unpredictable experience, particularly for seasoned participants and new users alike.

  • Advantages: The Pack Tab serves as an entry point for new users and provides existing players with the chance to acquire high-performance or rare NFT Cars. Each car's attributes are randomly assigned through a defined algorithm, ensuring fairness and diversity across the NFT ecosystem.

  • Earnings Potential: By acquiring NFT Cars through the Pack Tab, users can either trade these assets in the marketplace or lease them for steady income through the Rental System. The unpredictability of what each pack contains makes it exciting and opens up opportunities for significant gains.

  • Example of Randomized Attribute Calculation:

    # Random attribute generation for NFT cars
    import random
    
    def generate_attributes():
        speed = random.randint(50, 100)  # Car speed in km/h
        durability = random.randint(70, 100)  # Durability rating out of 100
        fuel_efficiency = random.uniform(5, 10)  # Fuel efficiency (points per km)
        return speed, durability, fuel_efficiency
    
    # Generate random attributes for an NFT car
    car_speed, car_durability, car_fuel_efficiency = generate_attributes()
    print(f"Speed: {car_speed} km/h, Durability: {car_durability}, Fuel Efficiency: {car_fuel_efficiency} points/km")

Trade System: Decentralized Marketplace

The Trade System within the Showroom serves as a decentralized marketplace where users can interact with each other and engage in NFT Car transactions. This system allows you to buy, sell, and trade NFT Cars using the Market Tab, offering endless opportunities to strategically manage your collection and capitalize on market movements.

  • Primary Currency: All transactions in the marketplace are conducted using BNB, providing a secure and efficient medium for exchanges.

  • Market Fee: A 2% market fee is applied to every transaction. This fee is deducted from the seller's earnings and reinvested into platform development, ensuring the continuous improvement of the GrabWay ecosystem.

    # Market fee calculation for NFT car transaction
    def calculate_market_fee(sale_price, market_fee_rate=0.02):
        market_fee = sale_price * market_fee_rate
        return market_fee
    
    sale_price = 1000  # Sale price of NFT car in BNB
    fee = calculate_market_fee(sale_price)
    print(f"Market Fee: {fee} BNB")


Rental System: The Rent Tab

The Rent Tab offers users a way to participate in the GrabWay ecosystem without the need for a significant upfront investment. Instead of purchasing an NFT Car outright, users can rent cars for temporary use and still earn rewards during the rental period.

  • Primary Currency: The GRAB token is used as the currency for all rentals, making the rental system accessible to users who may not hold large quantities of BNB.

  • Rent Fee: A 5% Rent Fee is applied to every rental transaction. This fee is deducted from the rental income received by the car owner and helps maintain the platform’s operations and growth.

    # Rent fee calculation for renting an NFT car
    def calculate_rent_fee(rent_income, rent_fee_rate=0.05):
        rent_fee = rent_income * rent_fee_rate
        return rent_fee
    
    rent_income = 500  # Rent income in GRAB tokens
    fee = calculate_rent_fee(rent_income)
    print(f"Rent Fee: {fee} GRAB")

    • Car Owner Receives: If a car is rented for 500 GRAB tokens, a 5% Rent Fee (25 GRAB tokens) is deducted, leaving the owner with 475 GRAB tokens.

    • Accessibility: The Rental System lowers the barrier to entry for users, providing a way for individuals to engage in the ecosystem without needing to own a car. This expands the reach of GrabWay and fosters a more inclusive community.


Strategic Advantages of the Showroom

The Showroom's diverse range of features—random NFT acquisition, decentralized trading, and renting—creates an interconnected ecosystem that caters to different user preferences:

  • Collectors can build and manage their NFT fleets.

  • Traders can capitalize on market dynamics.

  • Renters can participate in the system with minimal upfront investment.

This multi-layered system ensures that GrabWay remains accessible, engaging, and profitable for all participants, while also sustaining the platform’s development through its well-structured Tax & Fee System.

Last updated