paginated erc20 by address with specifiable start and end blocks by le-hungry-ghost · Pull Request #42 · pcko1/etherscan-python · GitHub
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion etherscan/configs/GOERLI-stable.json
11 changes: 10 additions & 1 deletion etherscan/configs/KOVAN-stable.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,15 @@
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_address_paginated": {
"module": "accounts",
"kwargs": {
"address": "0xa991b15e414ddfa78b0df1f7af6b3cf2023c738d",
"page": 1,
"offset": 100,
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_contract_address_paginated": {
"module": "accounts",
"kwargs": {
Expand Down Expand Up @@ -307,4 +316,4 @@
"offset": 100
}
}
}
}
11 changes: 10 additions & 1 deletion etherscan/configs/MAIN-stable.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,15 @@
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_address_paginated": {
"module": "accounts",
"kwargs": {
"address": "0x4e83362442b8d1bec281594cea3050c8eb01311c",
"page": 1,
"offset": 100,
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_contract_address_paginated": {
"module": "accounts",
"kwargs": {
Expand Down Expand Up @@ -463,4 +472,4 @@
"sort": "asc"
}
}
}
}
11 changes: 10 additions & 1 deletion etherscan/configs/RINKEBY-stable.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,15 @@
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_address_paginated": {
"module": "accounts",
"kwargs": {
"address": "0x18045cdf3f619e32ff4b11df689059b4d0358d11",
"page": 1,
"offset": 100,
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_contract_address_paginated": {
"module": "accounts",
"kwargs": {
Expand Down Expand Up @@ -307,4 +316,4 @@
"offset": 100
}
}
}
}
11 changes: 10 additions & 1 deletion etherscan/configs/ROPSTEN-stable.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,15 @@
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_address_paginated": {
"module": "accounts",
"kwargs": {
"address": "0x3ebe6781be6d436cb7999cfce8b52e40819721cb",
"page": 1,
"offset": 100,
"sort": "asc"
}
},
"get_erc20_token_transfer_events_by_contract_address_paginated": {
"module": "accounts",
"kwargs": {
Expand Down Expand Up @@ -307,4 +316,4 @@
"offset": 100
}
}
}
}
37 changes: 35 additions & 2 deletions etherscan/modules/accounts.py