Les ressources ont été chargées... Je charge...

Méthode d'appel d'Ethereum RPC

Utilisez leexchange.IO()fonction pour appeler la méthode Ethereum RPC.

  • Rechercher le solde d'ETH dans le portefeuille
    exchange.IO("api", "eth", "eth_getBalance", owner, "latest")   // owner is the specific wallet address
    
  • Transfert de l'ETH
    exchange.IO("api", "eth", "send", toAddress, toAmount)   // toAddress is the address of the wallet receiving ETH when transferring, toAmount is the quantity
    
  • Renseignez-vous sur le prix du gaz
    exchange.IO("api", "eth", "eth_gasPrice")
    
  • Demande d'éth_estimationGas
    exchange.IO("api", "eth", "eth_estimateGas", data)
    
Enregistrer l'ABI Code de support