Bitcoin Miner S19j XP

FunctionBTC/BCH/BSV  SHA256  Air-cooling Miner
Specifications151T 3247W 21.5J/T

We accept

| Specifications


Product Glance
ModelS19j XP
Algorithm | CryptocurrencySHA256 | BTC/BCH/BSV
Hashrate, TH/s151
Power on wall @25°C, Watt3247 ±10%
Power efficiency on wall @25°C, J/TH21.5 ±5%
Detailed Characteristics
Power Supply
Power supply AC Input voltage, Volt(1-1)220~277
Power supply AC Input Frequency Range, Hz47~63
Power supply AC Input current, Amp(1-2)20(1-3)
Hardware Configuration
Networking connection modeRJ45 Ethernet 10/100M
Miner Size (Length*Width*Height, w/o package),mm(2-1)400*195*290
Miner Size (Length*Width*Height, with package),mm570*316*430
Net weight, kg(2-2)14.9
Gross  weight, kg(2-2)16.5
Environment Requirements
Operation temperature,°C0~40
Storage temperature,°C-20~70
Operation humidity(non-condensing) , RH10~90%
Operation altitude, m(3-1)≤2000

NOTE:

1.To prevent the spread of virus in the firmware, which can cause damage to the ANTMINER S19 series, the setting function of “Secure Boot” has been switched on and the “Root Authority” function has been disabled.

2.If the user fails to use the product in accordance with the given instructions, specifications, and conditions provided, or change the function setting without BITMAIN’s prior consent, CryptominingHub will not be liable for any damage arising therefrom.

(1-1) Caution: Wrong input voltage may probably cause miner damaged

(1-2) Max condition: temperature 40°C, altitude 0m

(1-3) Two AC input wires, 10A per wire

(2-1) ​​​​Including PSU size

(2-2) Including PSU weight

(3-1) When the miner is used at an altitude from 900m to 2000m, the highest operating temperature decreases by 1℃ for every increase of 300m

| Purchasing Guidelines


1. If the Hashrate of the final delivered mining machine is lower than 151T, the difference will be refunded according to $/T.

2. The product needs full payment.

3. The shipping costs, customs charges, and taxes(if any) are not included in the retail price shown above.

4. After an order has been submitted, a request to cancel the order, refund any part of the ordered amount or change the ordered item(s) to different item(s) or different batch(es) will not be entertained by Bitmern Mining.

5. The pictures shown are for reference only; the final shipment version shall prevail.

 

| Shipping Details


1.The products are made in Malaysia.

2. Shipments will be scheduled on a first-paid-first-ship basis for orders on which Bitmern Mining has received full payment.

3. You are responsible for any customs delays or returned shipments due to a lack of proper documentation. It’s highly recommended to be aware of local customs clearance policies and to prepare all customs documentation ahead of time to avoid any customs clearance delays or unexpected costs.

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

/* -- The root styles must go in the element of the structure with the name "Single product"(Section). --*/

/* -- Border radius to the main photo of the gallery -- */
.single-product-4__gallery{
  .flex-viewport, .woocommerce-product-gallery__image{
    border-radius: var(--radius-m);
  }
}

.single-product-4__add-cart{
  /* Styles for when the product is sold individually */
  &:has(.input-text[type="hidden"]){
    .woocommerce-variation-add-to-cart, .cart{
      flex-direction: column;
    }
  }

  /*-- Styles applied to the container containing the quantity form and the button may vary depending on whether it has variations or not. --*/
  .variations_button, .cart:not(:has(.variations_button)){
    display:flex;
    gap: var(--space-xs);

    /*-- Button styles "Add to cart" --*/
    .button{
      margin-top:0;
      flex: 1;
    }

    /*-- Mobile Styles --*/
    @media(max-width: 766px){
      flex-direction:column;
    }
  }

  /*- Border radius styles in quantity input -*/
  .quantity{
    .action.minus{
      border-radius: var(--radius-s) 0 0  var(--radius-s);
    }

    .action.plus{
      border-radius: 0  var(--radius-s)  var(--radius-s) 0;
    }
  }
}
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.single-product-4__accordion-heading');
const contentFaq = document.querySelectorAll('.single-product-4__accordion-description');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});