Asteroid Shiba: ¿una nueva memecoin con potencial?
El nombre Asteroid Shiba está inundando las redes sociales, impulsado por una narrativa que vincula directamente el proyecto con Elon Musk y la marca SpaceX. Pero, ¿existe realmente una conexión oficial?.
Mientras Dogecoin, una de las mejores memecoins al día de hoy, cotiza por debajo de los 10 centavos con una subida del 7% esta semana, cualquier historia relacionada con la temática Shiba parece ganar tracción inmediata.
Hasta el momento, no existe ninguna afiliación confirmada de SpaceX o Musk con este token. Sin embargo, el sector de las meme coins atraviesa un momento de alta volatilidad y entusiasmo, lo que explica por qué nombres como este se vuelven tendencia en las búsquedas globales.
Con una capitalización total del mercado crypto al alza y Bitcoin consolidándose en máximos de cuatro meses, el entorno macroeconómico resulta favorable para la especulación.
Table of Contents
- En este artículo
-
Advertencias de seguridad y riesgos del contrato
-
Últimas noticias de mercado:
-
- En este artículo
-
¿Qué es Asteroid Shiba crypto?
-
Advertencias de seguridad y riesgos del contrato
-
Últimas noticias de mercado:
-
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();
});
});
¿Qué es Asteroid Shiba crypto?
Asteroid Shiba es una criptomoneda meme lanzada en la red de Ethereum que basa su identidad en un evento espacial real. La mascota del token es un juguete de peluche de un Shiba Inu llamado Asteroid, que viajó a bordo de la misión Polaris Dawn de SpaceX en 2024 como el indicador oficial de gravedad cero.
El diseño fue creado en apenas 30 minutos por Liv Perrotto, una joven de 15 años paciente de cáncer pediátrico que lamentablemente falleció. El peluche se convirtió en un símbolo de resiliencia y exploración espacial.
At 15 years old, Liv Perrotto’s biggest dream was to meet @elonmusk. She had even written out a list of questions to ask him. Her mother @rebeccaperrotto told me that just days before she passed away from cancer, she had a chance to speak with Elon, but she was too tired and… pic.twitter.com/zTRMreMFhM
— Glenn Beck (@glennbeck) April 16, 2026
Asteroid Shiba busca posicionarse como algo más que una criptomoneda de perros común, fusionando la cultura de internet con una historia conmovedora vinculada a SpaceX y a Floki, el propio perro de Elon Musk.
Recientemente, el impulso de esta narrativa ha llevado a la capitalización de mercado de Asteroid Shiba a superar los 20 millones de dólares, alcanzando un nuevo máximo histórico según reportes de mercados de intercambio como KuCoin.
Este crecimiento refleja cómo el sentimiento social puede catapultar el valor de un activo en cuestión de horas.
ASTEROID went from $50K market cap to a peak of $23 Million today. What is it?
Asteroid is a shiba inu designed by Liv Perrotto, a 15 year old girl with cancer who tragically passed away earlier this year.
She wanted to ask Elon if he would make Asteroid into SpaceX’s mascot. pic.twitter.com/WiKocpDX9P
— Arkham (@arkham) April 17, 2026
La narrativa del token también posee raíces benéficas. Los ingresos de la mercancía relacionada apoyaron originalmente al St. Jude Children’s Research Hospital.
El interés por la criptomoneda se ha disparado hoy, con un aumento de precio superior al 80.000% en las últimas 24 horas y una capitalización que superó los 10 millones de dólares inicialmente, impulsada por la viralización de la historia de Liv y una respuesta de Musk en redes sociales sobre el peluche.
Advertencias de seguridad y riesgos del contrato
A pesar de la euforia, existen señales de alerta importantes. Según GoPlus, tal como se indica en la página de Coingecko, el creador del contrato puede realizar cambios críticos, como deshabilitar las ventas, modificar las comisiones, emitir nuevos tokens o transferirlos de forma arbitraria.
Se recomienda ejercer extrema precaución al operar con shiba crypto de este tipo.

Adicionalmente, el equipo de investigación encontró que existen grandes concentraciones de tokens en manos de unos pocos poseedores (clusters), lo que aumenta el riesgo de manipulación de precios o de un posible desplome si estos actores deciden liquidar sus posiciones masivamente.
Últimas noticias de mercado:
- Binance quema 1.320 millones en BNB: ¿Rumbo a los 650 dólares?
- Bitcoin a $250.000: Hoskinson advierte riesgos sobre la propuesta BIP-361
- Ethereum ante una decisión crítica: el soporte de los $2.400
The post Asteroid Shiba: ¿una nueva memecoin con potencial? appeared first on Cryptonews en Español.
Crédito: Enlace fuente
Responses