William O'Beirne e80d0a68a9 All v3 Nodes & Networks (#202)
* Add all v3s nodes, create node libs for etherscan and infura.

* Add all network configs for alternatives.

* Color and animate nav border on network selection.

* Address PR comments.

* Persist network selection to local storage.

* Modifiy TransactionSucceeded to link to network-specific explorer.

* - Reload on Node Change to reset state. Should be refactored in the future so that we are not forcing clients to reload.
2017-09-19 17:47:08 -07:00

15 lines
382 B
JavaScript

import RPCNode from '../rpc';
import EtherscanClient from './client';
import EtherscanRequests from './requests';
export default class EtherscanNode extends RPCNode {
client: EtherscanClient;
requests: EtherscanRequests;
constructor(endpoint: string) {
super(endpoint);
this.client = new EtherscanClient(endpoint);
this.requests = new EtherscanRequests();
}
}