리소스 로딩... 로딩...

이더리움 RPC 호출 방법

사용exchange.IO()이더리움 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 등록 지원 코드