Comment obtenir l'historique d'un portefeuille ?
Quelle est l'historique d'un portefeuille ?
Comment le faire avec Moralis ?
import Moralis from 'moralis';
try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});
const response = await Moralis.EvmApi.wallets.getWalletHistory({
"chain": "0x15b38", // This is for Chiliz Chain Mainnet.
// For Spicy Testnet, use "0x15b32".
"order": "DESC",
"address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
});
console.log(response.raw);
} catch (e) {
console.error(e);
}Comment le faire avec Tatum ?
Comment le faire avec thirdweb ?
Mis à jour
Ce contenu vous a-t-il été utile ?