This file contains 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
# Comparison of Filecoin storing 1GB/year with Amazon S3 | |
## Filecoin | |
### Controls | |
deals_array = 2500 | |
total_GB_stored_in_deals_array = 2,470.018 GB | |
total_FIL_paid_in_deals_array = 3.978 |
This file contains 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
var page = require('webpage').create(), | |
system = require('system'), | |
fs = require('fs'), | |
file = 'data.json', | |
address; | |
// how long should we wait for the page to load before we exit | |
// in ms | |
var WAIT_TIME = 1000; |