William O'Beirne c0cd668c64 Custom Nodes (#322)
* Layed out components for custom nodes.

* Outline of custom nodes. Still missing various features and error handling.

* Persist custom nodes to local storage.

* Make custom nodes removable.

* Add latest block functions, call it when switching nodes.

* Initialize correct node, move node utils into utils file.

* Fix names

* Send headers along with rpc requests.

* Remove custom network options for now.

* PR feedback.

* One last log.

* Fix tests.

* Headers in batch too.

* Switch to node when you add it.

* Reduce hackery.

* Clean up linter and tsc.

* Fix latest block hex conversion.

* Unit tests.

* Fix missing property.

* Fix Modal title typing.
2017-11-18 14:33:53 -06:00

78 lines
1.6 KiB
TypeScript

import { Token } from 'config/data';
import ERC20 from 'libs/erc20';
import RPCRequests from '../rpc/requests';
import {
CallRequest,
EstimateGasRequest,
GetBalanceRequest,
GetTokenBalanceRequest,
GetTransactionCountRequest,
SendRawTxRequest,
GetCurrentBlockRequest
} from './types';
export default class EtherscanRequests extends RPCRequests {
public sendRawTx(signedTx: string): SendRawTxRequest {
return {
module: 'proxy',
method: 'eth_sendRawTransaction',
hex: signedTx
};
}
public estimateGas(transaction): EstimateGasRequest {
return {
module: 'proxy',
method: 'eth_estimateGas',
to: transaction.to,
value: transaction.value,
data: transaction.data,
from: transaction.from
};
}
public getBalance(address: string): GetBalanceRequest {
return {
module: 'account',
action: 'balance',
tag: 'latest',
address
};
}
public ethCall(transaction): CallRequest {
return {
module: 'proxy',
action: 'eth_call',
to: transaction.to,
data: transaction.data
};
}
public getTransactionCount(address: string): GetTransactionCountRequest {
return {
module: 'proxy',
action: 'eth_getTransactionCount',
tag: 'latest',
address
};
}
public getTokenBalance(
address: string,
token: Token
): GetTokenBalanceRequest {
return this.ethCall({
to: token.address,
data: ERC20.balanceOf(address)
});
}
public getCurrentBlock(): GetCurrentBlockRequest {
return {
module: 'proxy',
action: 'eth_blockNumber',
};
}
}