Client defines typed wrappers for the Ethereum RPC API.
| 38 | |
| 39 | // Client defines typed wrappers for the Ethereum RPC API. |
| 40 | type Client struct { |
| 41 | c *rpc.Client |
| 42 | } |
| 43 | |
| 44 | // Dial connects a client to the given URL. |
| 45 | func Dial(rawurl string) (*Client, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected