top of page

Motocarro de carga EVOTANK 180 CM

$50,900.00 Precio
$47,320.00Precio de oferta
  • Potencia: 1800 W

    Bateria: 60v-45Ah / 60v-52Ah 72v-45Ah / 72V-52Ah

    Autonomia: 35/40/45/50 KM

    Veloaldad: 40-45 km/HR

    Soporte en KG: 1500

    Peso en KG: 284

    Llanta: D:400-12/ T:450-12

    El modelo Evotank esta diseñado para el trabajo pesado, ya que nos va a brindar un espacio amplio para transportar todo tipo de carga, es el modelo perfecto para todo tipo de negocio que requiera de transportar mercancia o lo que se requiera.

    Caja de carga con capacidad de carga: 1500 Kg.

bottom of page
// --- SERVER CODE --- const jwt = require('jsonwebtoken'); const secret = process.env.CHATBOT_IDENTITY_SECRET; // Your chatbase secret key (should be stored as a secret not in the code) const user = await getSignedInUser(); // Get the current user signed in to your site const token = jwt.sign( { user_id: user.id, // Your user's id email: user.email, // User's email stripe_accounts: user.stripe_accounts, // User's stripe accounts for stripe integration // ... other custom attributes }, secret, { expiresIn: '1h' } ); // --- CLIENT CODE --- const token = await getUserToken(); // Get the token from your server window.chatbase('identify', { token }); // identify the user with Chatbase