資源の読み込みに... 荷物...

Ethereum RPC を呼び出す方法

試しにexchange.IO()この関数は,Ethereum RPC メソッドを呼び出すための関数です

  • 財布内のETHの残高をクエリする
    exchange.IO("api", "eth", "eth_getBalance", owner, "latest")   // owner is the specific wallet address
    
  • ETH 送金
    exchange.IO("api", "eth", "send", toAddress, toAmount)   // toAddress is the address of the wallet receiving ETH when transferring, toAmount is the quantity
    
  • 検索ガス価格
    exchange.IO("api", "eth", "eth_gasPrice")
    
  • 問い合わせ eth_estimateガス
    exchange.IO("api", "eth", "eth_estimateGas", data)
    
ABI を登録する サポートコード