beginning work on method polling; first need to generate list of token holder address in a completely generic/contratc agnostic fashion. Created address retriever that can iterate through any given contract's watched events, finding the inputs/arguments with address type, and generate a list from those values. Edit: Contract objects now cache every event emitted address as its event logs are transformed into the repo to grow a list of contract associated addresses as we go

This commit is contained in:
Ian Norden
2018-11-04 21:37:31 -06:00
parent e9dbd771e5
commit b459cf35ed
23 changed files with 889 additions and 265 deletions
+2
View File
@@ -35,6 +35,8 @@ var (
network string
contractAddress string
contractAddresses []string
eventsOn bool
methodsOn bool
contractEvents []string
contractMethods []string
)