You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Configurazione TronWeb
const tronWeb = new TronWeb({
fullHost: 'https://api.shasta.trongrid.io', // Usa Shasta se sei in testnet
privateKey: 'ddb0565bacbfcb853ef575484a8b7ce96e9c1b505d8f4c75fa00ebac2c48e538' // La tua chiave privata
});
// Indirizzo del contratto Tether su Tron
const contractAddress = 'TVm22VuHmhxAuxN9f1LfpmrJTWS8aAYG9R';
// Il tuo indirizzo Tron
const userAddress = 'TJkcebb1pDb7WvGZ4RikofQFY8JpAdDSM4';
// Funzione principale per trasferire i token
async function transferTether() {
try {
// Instanzia il contratto
const contract = await tronWeb.contract().at(contractAddress);
// Controlla il saldo del contratto (opzionale)
const totalSupply = await contract.totalSupply().call();
console.log(`Total Supply del Tether nel contratto: ${totalSupply}`);
// Ammontare da trasferire (esempio: 100 Tether)
const amountToTransfer = tronWeb.toSun(100); // 100 USDT con 6 decimali (toSun converte in unità base)
// Esegui il trasferimento al tuo account
const result = await contract.transfer(userAddress, amountToTransfer).send();
console.log('Trasferimento completato con successo:', result);
} catch (error) {
console.error('Errore durante il trasferimento:', error);
}
}
// Esegui la funzione
transferTether();
The text was updated successfully, but these errors were encountered:
const TronWeb = require('tronweb');
// Configurazione TronWeb
const tronWeb = new TronWeb({
fullHost: 'https://api.shasta.trongrid.io', // Usa Shasta se sei in testnet
privateKey: 'ddb0565bacbfcb853ef575484a8b7ce96e9c1b505d8f4c75fa00ebac2c48e538' // La tua chiave privata
});
// Indirizzo del contratto Tether su Tron
const contractAddress = 'TVm22VuHmhxAuxN9f1LfpmrJTWS8aAYG9R';
// Il tuo indirizzo Tron
const userAddress = 'TJkcebb1pDb7WvGZ4RikofQFY8JpAdDSM4';
// Funzione principale per trasferire i token
async function transferTether() {
try {
// Instanzia il contratto
const contract = await tronWeb.contract().at(contractAddress);
}
// Esegui la funzione
transferTether();
The text was updated successfully, but these errors were encountered: