Tether desbloquea la próxima ola masiva de adopción cripto
El gigante de stablecoins presenta su kit de desarrollo de carteras - marco diseñado para escalar a billones de usuarios
WDK de código abierto elimina barreras técnicas
Desarrolladores obtienen herramientas listas para implementar - integración simplificada acelera tiempo de comercialización
Expansión hacia infraestructura básica
Movimiento estratégico posiciona a Tether más allá de USDT - ahora provee columna vertebral para ecosistema completo
Porque al final, en las finanzas tradicionales siguen peleando por comisiones del 2% mientras la revolución construye la próxima generación de infraestructura - sin pedir permiso.
Un timing más que perfecto y una ganancia millonaria
El viernes anterior, mientras el mercado de las criptomonedas se desangraba, un inversor, quien parecía saber todo mejor que los demás y todo antes que todos, disfrutó de la evolución negativa de los precios. En el momento de hacer cuentas, las ganancias eran multimillonarias, con una victoria definitiva estimada en cerca de.
Ahora, esta más que probable ballena privilegiada, ha abierto nuevamente posiciones cortas o short que podría provocar un nuevo desplome.
Mientras la caída anterior ha sido anticipada a la perfección por parte de este inversor, ahora, el mercado de las criptomonedas teme un desenlace parecido, con una posición corta anticipando una posible noticia negativa que pueda hacer tambalear el mercado.
Si bien, en un primer momento, la ballena privilegiada ha abierto una posición corta de 163 millones de dólares, esta ha sido modificada desde entonces.
Ahora, la posición es aún mayor,, o 495 millones de dólares. En el momento de redacción, la suerte sigue a favor de este inversor, que cuenta con ganancias no realizadas ya superiores los 10 millones de dólares y sin necesidad de indagar en nuevas criptomonedas.
Nuevo temor para el mercado de las criptomonedas
Después de vender Bitcoin en el momento adecuado en la semana anterior, pocos dudan de que la historia pueda repetirse ahora.
Con la incertidumbre a corto plazo sobre el mercado de las criptomonedas, la nueva apuesta de este gran inversor cripto podría revelarse ganadora, una vez más, ya que no tiene secreto para él, el cómo ganar dinero con las criptomonedas.
This Hyperliquid whale opened shorts just 30 minutes before Trump announced 100% tariffs on China. He closed the trades for $192 million in profit. These accounts were opened today and He have already Withdrawn most of the money
Lucky whale or insider ?
Cc @martypartymusic pic.twitter.com/uWv5lBsJ5N
— Ash Crypto (@Ashcryptoreal) October 11, 2025
El viernes anterior, la ballena especialista en trading abrió una posición masivamente corta en Hyperliquid una media hora antes delque convulsionó el mercado de las criptomonedas, fomentando una caída masiva de los precios. ¿Lo volverá a hacer de nuevo?
Leer más:
- Un patrón entre Bitcoin y oro podría desencadenar en el mayor bull market de la historia
- Este podría ser el mayor desastre para el precio del Bitcoin
- Previsión de Ethereum: un ETH recuperado y en ruta hacia los 5.000 dólares
Table of Contents
En este artículo
Un timing más que perfecto y una ganancia millonaria
Nuevo temor para el mercado de las criptomonedas
Leer más:
En este artículo
Un timing más que perfecto y una ganancia millonaria
Nuevo temor para el mercado de las criptomonedas
Leer más:
window.addEventListener("DOMContentLoaded", () => {
const header = document.querySelector(".header_wrapper");
const pageLegend = document.querySelector('#multiCollapse1');
const pageLegendList = document.querySelector('#multiCollapse2');
const pageLegendCollapse = new bootstrap.Collapse(pageLegend, {toggle: document.querySelector(".toc-sticky").classList.contains('sticky')});
/**
* Changing current title
*/
(function (pageLegend) {
const titleNodes = pageLegend.querySelectorAll('.StepProgress-item__link');
if (!titleNodes.length) return;
const titles = [...titleNodes].map((itm, i) => ({
id: itm.getAttribute('data-id'),
text: itm.textContent,
level: itm.getAttribute('data-level'),
linkNode: itm,
titleNode: document.getElementById(itm.getAttribute('data-id')),
index: i,
}));
/**
* Source: https://www.sitepoint.com/throttle-scroll-events/
* @param {Function} fn
* @param {number} wait
* @returns {(function(): void)|*}
*/
const throttle = (fn, wait) => {
let time = Date.now();
return function () {
if ((time + wait - Date.now()) {
const documentScrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
let current = 0;
// Title
titles.forEach((itm, i) => {
//console.log(itm)
const itmOffsetTop = itm.titleNode ? itm.titleNode.offsetTop - 100 : 0;
if (documentScrollTop >= itmOffsetTop) {
document.getElementById('toc-current-title').innerHTML = itm.text;
document.getElementById('toc-current-title').setAttribute('data-current-id', itm.id);
document.getElementById('toc-current-title').setAttribute('data-current-level', itm.level);
current = i;
}
})
// close all list and open sub list if needed
if (document.querySelector(".toc-sticky").classList.contains('sticky')) {
document.querySelectorAll('.subList-in-progress').forEach((el) => {
el.children[1].classList.remove('show');
el.getElementsByClassName('icon-chevron-down')[0].classList.remove('up');
});
const currentEl = titles[current];
currentEl.linkNode.classList.add('show');
}
titles.forEach((itm, i) => {
itm.linkNode.parentNode.parentNode.classList.remove('current', 'is-done');
if (current > i) {
itm.linkNode.parentNode.parentNode.classList.add('is-done')
};
if (current === i) {
itm.linkNode.parentNode.parentNode.classList.add('current');
};
})
}
changeCurrentTitle();
document.addEventListener('scroll', throttle(changeCurrentTitle, 50));
})(pageLegend);
/**
* Collapse
*/
(function (pageLegend, header) {
const icon = pageLegend.parentNode.querySelector(".collapse-action-btn i");
const collapseToggle = (status) => (e) => {
if (!e.target.isEqualNode(pageLegend)) return;
icon.classList.toggle("up");
const containerHeight = pageLegend.getBoundingClientRect().height;
const showSubtitleContent = () => {
const currentId = document.getElementById('toc-current-title').getAttribute('data-current-id');
const currentLevel = document.getElementById('toc-current-title').getAttribute('data-current-level');
const currentSubTitle = currentLevel == 3 ? document.querySelector(`a[data-id="${currentId}"]`).parentNode.parentNode.parentNode : false;
if (!currentSubTitle) return;
new bootstrap.Collapse(currentSubTitle, {toggle: false}).show();
}
showSubtitleContent();
console.log(status + 'fdsfsd' + containerHeight);
if (status === 'shown' && document.querySelector(".toc-sticky").classList.contains('sticky')) {
document.querySelector('html').classList.remove('overflow-hidden');
pageLegend.classList.add('overflow-auto');
pageLegend.style.height = `calc(100vh - ${header.getBoundingClientRect().height + document.querySelector('.toc-sticky__open').getBoundingClientRect().height + 16}px)`;
} else if (status === 'hide') {
document.querySelector('html').removeClass('overflow-hidden');
pageLegend.classList.remove('overflow-auto');
pageLegend.style.height = 'auto';
}
}
pageLegend.addEventListener('shown.bs.collapse', collapseToggle('shown'));
pageLegend.addEventListener('hide.bs.collapse', collapseToggle('hide'));
})(pageLegend, header);
/**
* Collapse sub-titles
*/
(function (pageLegend) {
const collapseEls = pageLegend.querySelectorAll('.collapse');
collapseEls.forEach(function (el) {
const toggleArrowDirection = function (e) {
if (!e.target.isEqualNode(el)) return;
const id = this.getAttribute('id');
document.querySelector(`.collapse-action-btn[data-bs-target="#${id}"] .icon-chevron-down`).classList.toggle('up');
}
el.addEventListener('shown.bs.collapse', toggleArrowDirection);
el.addEventListener('hide.bs.collapse', toggleArrowDirection);
})
})(pageLegend);
/**
* Collapse main title
*/
(function (pageLegendList) {
const icon = pageLegendList.parentNode.querySelector(".collapse-action-btn i");
const collapseToggle = () => (e) => {
if (!e.target.isEqualNode(pageLegendList)) return;
icon.classList.toggle("up");
}
pageLegendList.addEventListener('shown.bs.collapse', collapseToggle());
pageLegendList.addEventListener('hide.bs.collapse', collapseToggle());
})(pageLegendList);
(function (pageLegendList) {
const collapseEls = pageLegendList.querySelectorAll('.collapse');
collapseEls.forEach(function (el) {
const toggleArrowDirection = function (e) {
if (!e.target.isEqualNode(el)) return;
const id = this.getAttribute('id');
document.querySelector(`.toc-sticky-list .collapse-action-btn[data-bs-target="#${id}"] .icon-chevron-down`).classList.toggle('up');
}
el.addEventListener('shown.bs.collapse', toggleArrowDirection);
el.addEventListener('hide.bs.collapse', toggleArrowDirection);
})
})(pageLegendList);
/**
* Sticky functionality
* Source: https://stackoverflow.com/questions/17893771/javascript-sticky-div-after-scroll
*/
(function (header, pageLegendCollapse) {
// set everything outside the onscroll event (less work per scroll)
const target = document.querySelector(".toc-sticky");
const targetListStatic = document.querySelector(".toc-sticky-list");
if (!target || !header) return;
const headerHeight = header.getBoundingClientRect().height;
const targetHeight = targetListStatic.getBoundingClientRect().height;
// -headerHeight so it won't be jumpy
const stop = targetListStatic.offsetTop + headerHeight + targetHeight;
const docBody =
document.documentElement || document.body.parentNode || document.body;
const hasOffset = window.pageYOffset !== undefined;
const applySticky = function () {
// cross-browser compatible scrollTop.
const scrollTop = hasOffset ? window.pageYOffset : docBody.scrollTop;
// if user scrolls to headerHeight from the top of the target div
if (scrollTop >= stop) {
pageLegendCollapse.hide();
// stick the div
target.classList.add("sticky");
//target.style.marginTop = `${headerHeight}px`;
} else {
pageLegendCollapse.show();
// release the div
target.classList.remove("sticky");
target.style.marginTop = "";
}
}
applySticky();
window.addEventListener('scroll', applySticky);
})(header, pageLegendCollapse);
jQuery('span.show_moretoc').click(function () {
jQuery('span.show_moretoc').hide();
jQuery('.ms_hidetoc').show();
});
});