├── .gitignore ├── .nojekyll ├── LICENSE ├── README.md ├── assets └── pdf │ ├── ethcc2021.pdf │ ├── notes-georgios.pdf │ └── rig-ethcc.pdf ├── auctions └── notebooks │ └── fpa_hybrid_sim.ipynb ├── eip1559 ├── combination.md ├── fixedesc.jpeg ├── floatingesc.jpeg ├── floatingescfixedtip.jpeg └── notes-call3.md ├── ethdata ├── extract.sh └── notebooks │ ├── explore_data.Rmd │ ├── explore_data.html │ └── gas_weather_reports │ ├── exploreJuly21.Rmd │ └── exploreJuly21.html ├── index.html ├── posdata ├── README.md ├── default.html5 ├── index.html ├── notebooks │ ├── lib.R │ ├── mainnet_compare.Rmd │ ├── mainnet_explore.Rmd │ ├── mainnet_explore.html │ ├── medalla_explore.Rmd │ ├── pyrmont_compare.Rmd │ ├── pyrmont_explore.Rmd │ └── uptime_reward_gif.R └── scripts │ ├── 20210424_plots.R │ ├── 20210908_slowdown.R │ └── 20210918_altair_sync.R ├── static ├── authorFormatting.js ├── component-library.js ├── footer.js ├── header.js ├── index.css ├── jupyter.css ├── react-dom.development.js ├── react.development.js ├── referencesFormatting.js ├── rig.png ├── sectionFormatting.js └── theme-light.css └── supply-chain-health └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/README.md -------------------------------------------------------------------------------- /assets/pdf/ethcc2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/assets/pdf/ethcc2021.pdf -------------------------------------------------------------------------------- /assets/pdf/notes-georgios.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/assets/pdf/notes-georgios.pdf -------------------------------------------------------------------------------- /assets/pdf/rig-ethcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/assets/pdf/rig-ethcc.pdf -------------------------------------------------------------------------------- /auctions/notebooks/fpa_hybrid_sim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/auctions/notebooks/fpa_hybrid_sim.ipynb -------------------------------------------------------------------------------- /eip1559/combination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/eip1559/combination.md -------------------------------------------------------------------------------- /eip1559/fixedesc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/eip1559/fixedesc.jpeg -------------------------------------------------------------------------------- /eip1559/floatingesc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/eip1559/floatingesc.jpeg -------------------------------------------------------------------------------- /eip1559/floatingescfixedtip.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/eip1559/floatingescfixedtip.jpeg -------------------------------------------------------------------------------- /eip1559/notes-call3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/eip1559/notes-call3.md -------------------------------------------------------------------------------- /ethdata/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/ethdata/extract.sh -------------------------------------------------------------------------------- /ethdata/notebooks/explore_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/ethdata/notebooks/explore_data.Rmd -------------------------------------------------------------------------------- /ethdata/notebooks/explore_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/ethdata/notebooks/explore_data.html -------------------------------------------------------------------------------- /ethdata/notebooks/gas_weather_reports/exploreJuly21.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/ethdata/notebooks/gas_weather_reports/exploreJuly21.Rmd -------------------------------------------------------------------------------- /ethdata/notebooks/gas_weather_reports/exploreJuly21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/ethdata/notebooks/gas_weather_reports/exploreJuly21.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/index.html -------------------------------------------------------------------------------- /posdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/README.md -------------------------------------------------------------------------------- /posdata/default.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/default.html5 -------------------------------------------------------------------------------- /posdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/index.html -------------------------------------------------------------------------------- /posdata/notebooks/lib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/lib.R -------------------------------------------------------------------------------- /posdata/notebooks/mainnet_compare.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/mainnet_compare.Rmd -------------------------------------------------------------------------------- /posdata/notebooks/mainnet_explore.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/mainnet_explore.Rmd -------------------------------------------------------------------------------- /posdata/notebooks/mainnet_explore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/mainnet_explore.html -------------------------------------------------------------------------------- /posdata/notebooks/medalla_explore.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/medalla_explore.Rmd -------------------------------------------------------------------------------- /posdata/notebooks/pyrmont_compare.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/pyrmont_compare.Rmd -------------------------------------------------------------------------------- /posdata/notebooks/pyrmont_explore.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/pyrmont_explore.Rmd -------------------------------------------------------------------------------- /posdata/notebooks/uptime_reward_gif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/notebooks/uptime_reward_gif.R -------------------------------------------------------------------------------- /posdata/scripts/20210424_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/scripts/20210424_plots.R -------------------------------------------------------------------------------- /posdata/scripts/20210908_slowdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/scripts/20210908_slowdown.R -------------------------------------------------------------------------------- /posdata/scripts/20210918_altair_sync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/posdata/scripts/20210918_altair_sync.R -------------------------------------------------------------------------------- /static/authorFormatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/authorFormatting.js -------------------------------------------------------------------------------- /static/component-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/component-library.js -------------------------------------------------------------------------------- /static/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/footer.js -------------------------------------------------------------------------------- /static/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/header.js -------------------------------------------------------------------------------- /static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/index.css -------------------------------------------------------------------------------- /static/jupyter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/jupyter.css -------------------------------------------------------------------------------- /static/react-dom.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/react-dom.development.js -------------------------------------------------------------------------------- /static/react.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/react.development.js -------------------------------------------------------------------------------- /static/referencesFormatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/referencesFormatting.js -------------------------------------------------------------------------------- /static/rig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/rig.png -------------------------------------------------------------------------------- /static/sectionFormatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/sectionFormatting.js -------------------------------------------------------------------------------- /static/theme-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/static/theme-light.css -------------------------------------------------------------------------------- /supply-chain-health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/rig/HEAD/supply-chain-health/README.md --------------------------------------------------------------------------------