eth_getCompilers,返回客户端中可用编译器的列表。
参数
- none
返回
- Array - 可以编译的数组列表。
例子
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getCompilers","params":[],"id":1}'
// Result
{
"id":1,
"jsonrpc": "2.0",
"result": ["solidity", "lll", "serpent"]
}