Elaine Ou
Elaine Ou
- [x] ~~Home page~~ - [x] ~~Address Page~~ - [ ] Contracts Page Internals
Sort of like this one, but generic. http://etherhub.io/dao#tab_dao_1 - [x] Generic Token interface with balance - [ ] View transactions - [ ] View transfer events - [ ] DB...
Detect Addresses that are ERC-20 compatible for token explorer see also: https://etherscan.io/token-search (From cody: If your running parity, you could export the state and grep it for erc20 like pattern...
TODO: - Identify contract against creation transaction - record creation transactions and associated contract addresses in DB (input data too) - really big crap like DAO contract causes a memory...
Can use `estimateGas` when creating transaction, but `trace_call` should be used for validation. `trace_call` provides a more accurate gas estimate. (http://ethereum.stackexchange.com/questions/266/what-are-the-limitations-to-estimategas-and-when-would-its-estimate-be-considera)
Allow users to enter data when creating transaction Currently hidden, just needs to be enabled. (Will be trickier for replay protection)
Template for requesting payment. Generate a link with address and amount filled in.
Rather than wait for streaming messages to come in, pull the most recent `X` messages and check that they have been dealt with in the DB.