(BlockChain) RPC
RPC Remote Procedure Cell의 약자, 원격 프로시저 호출 별도의 코딩 없이 다른 공간에 서 함수 등을 호출할 수 있는 통신 기술 IPC처럼 admin, eth, miner 등등 이 존재한다 geth를 IPC 파일이 아니라 HTTP 통신으로 조작, 실행하기 HTTP 통신을 사용하기 때문에 port가 열려있으면 외부에서 조작이 가능하다 geth --datadir ~/myGeth --http --http.addr "0.0.0.0" --http.port 8080 --http.corsdomain "*" --http.api "admin,miner,txpool,web3,personal,eth,net" --allow-insecure-unlock --syncmode full --networkid 50 ..
2023. 2. 9.