Die Ressourcen sind geladen. Beförderung...

Methode zum Aufrufen von Ethereum RPC

Verwendenexchange.IO()Funktion zum Aufrufen der Ethereum RPC-Methode.

  • Abfrage des ETH-Guthabenes in der Brieftasche
    exchange.IO("api", "eth", "eth_getBalance", owner, "latest")   // owner is the specific wallet address
    
  • ETH-Überweisung
    exchange.IO("api", "eth", "send", toAddress, toAmount)   // toAddress is the address of the wallet receiving ETH when transferring, toAmount is the quantity
    
  • Gaspreis abfragen
    exchange.IO("api", "eth", "eth_gasPrice")
    
  • Abfrage eth_estimateGas
    exchange.IO("api", "eth", "eth_estimateGas", data)
    
Registrieren Sie ABI Unterstützungskode