* A custom RPC endpoint is a reference to a user-defined server which fronts an * EVM chain. It may refer to an Infura network, but only by coincidence.
| 45 | * EVM chain. It may refer to an Infura network, but only by coincidence. |
| 46 | */ |
| 47 | interface CustomRpcEndpoint { |
| 48 | name?: string; |
| 49 | networkClientId: CustomNetworkClientId; |
| 50 | type: RpcEndpointType.Custom; |
| 51 | url: string; |
| 52 | } |
| 53 | |
| 54 | type RpcEndpoint = InfuraRpcEndpoint | CustomRpcEndpoint; |
| 55 |
nothing calls this directly
no outgoing calls
no test coverage detected