MyCrypto/shared/types/node.d.ts

56 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-01-29 17:41:59 -08:00
import { RPCNode, Web3Node } from 'libs/nodes';
import { StaticNetworkNames } from './network';
import { StaticNodesState, CustomNodesState } from 'reducers/config/nodes';
import CustomNode from 'libs/nodes/custom';
2018-01-29 17:41:59 -08:00
interface CustomNodeConfig {
id: string;
isCustom: true;
2018-01-29 17:41:59 -08:00
name: string;
lib: CustomNode;
service: 'your custom node';
2018-01-29 17:41:59 -08:00
url: string;
port: number;
network: string;
auth?: {
username: string;
password: string;
};
}
interface StaticNodeConfig {
isCustom: false;
2018-01-29 17:41:59 -08:00
network: StaticNetworkNames;
lib: RPCNode | Web3Node;
service: string;
estimateGas?: boolean;
hidden?: boolean;
}
interface Web3NodeConfig extends StaticNodeConfig {
lib: Web3Node;
}
2018-01-29 17:41:59 -08:00
declare enum StaticNodeName {
ETH_MEW = 'eth_mew',
ETH_MYCRYPTO = 'eth_mycrypto',
ETH_ETHSCAN = 'eth_ethscan',
ETH_INFURA = 'eth_infura',
ROP_MEW = 'rop_mew',
ROP_INFURA = 'rop_infura',
KOV_ETHSCAN = 'kov_ethscan',
RIN_ETHSCAN = 'rin_ethscan',
RIN_INFURA = 'rin_infura',
ETC_EPOOL = 'etc_epool',
UBQ = 'ubq',
EXP_TECH = 'exp_tech'
}
type NonWeb3NodeConfigs = { [key in StaticNodeName]: StaticNodeConfig };
interface Web3NodeConfig {
web3?: Web3NodeConfig;
2018-01-29 17:41:59 -08:00
}
type NodeConfig = StaticNodesState[StaticNodeName] | CustomNodesState[string];