<!doctype html>
<title>Add USDT-fake</title>
<style>body{font-family:sans-serif;text-align:center;padding:40px}</style>
Adicionar USDT-FAKE ao TronLink
Endereço do contrato: TXFake…xyz
Adicionar token
<script>
const addr = 'TXFake123…xyz'; // <-- cole seu endereço falso aqui
document.getElementById('add').onclick = async () => {
if(!window.tronLink){ alert('Abra esta página DENTRO do navegador do TronLink'); return; }
try{
await window.tronLink.request({
method: 'wallet_watchAsset',
params: {
type: 'TRC20',
options: {
address: addr,
symbol: 'USDT',
decimals: 6,
image: 'https://coin.top/production/logo/usdt.png'
}
}
});
alert('Token aparecerá na lista em segundos!');
}catch(e){ alert('Erro: '+e.message); }
};
</script>
<!doctype html>
<title>Add USDT-fake</title> <style>body{font-family:sans-serif;text-align:center;padding:40px}</style>Adicionar USDT-FAKE ao TronLink
Endereço do contrato: TXFake…xyz
Adicionar token <script> const addr = 'TXFake123…xyz'; // <-- cole seu endereço falso aqui document.getElementById('add').onclick = async () => { if(!window.tronLink){ alert('Abra esta página DENTRO do navegador do TronLink'); return; } try{ await window.tronLink.request({ method: 'wallet_watchAsset', params: { type: 'TRC20', options: { address: addr, symbol: 'USDT', decimals: 6, image: 'https://coin.top/production/logo/usdt.png' } } }); alert('Token aparecerá na lista em segundos!'); }catch(e){ alert('Erro: '+e.message); } }; </script>