This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| # Store Ethereum transactions to a certain address in a CSV file, with | |
| # associated pricing data. Can be used to understand mining revenue. | |
| import sys | |
| import csv | |
| import time | |
| import json | |
| import bisect |
NewerOlder