367.5. Samples
새 Mint된 블록을 수신하고 블록 해시를 jms 큐로 보냅니다.
from("web3j://http://127.0.0.1:7545?operation=ETH_BLOCK_HASH_OBSERVABLE") .to("jms:queue:blocks");
블록 해시 코드를 사용하여 블록 및 전체 트랜잭션 세부 정보를 검색합니다.
from("jms:queue:blocks") .setHeader(BLOCK_HASH, body()) .to("web3j://http://127.0.0.1:7545?operation=ETH_GET_BLOCK_BY_HASH&fullTransactionObjects=true");
특정 블록 번호에서 주소의 균형을 읽습니다.
from("direct:start") .to("web3j://http://127.0.0.1:7545?operation=ETH_GET_BALANCE&address=0xc8CDceCE5d006dAB638029EBCf6Dd666efF5A952&atBlock=10");