Skip to content

Instantly share code, notes, and snippets.

@potuz
potuz / gist:56d3c05163e7ce24ddba4f7a452a325a
Created July 25, 2024 11:40
Running Kurtosis with Prysm
#kurtosis
Resources:
- [Devnet-1 landing page](https://pectra-devnet-1.ethpandaops.io/)
- [Pectra cross team devnet-1 tracker](https://notes.ethereum.org/@ethpandaops/pectra-devnet-1)
- [Prysm TODO](https://www.notion.so/arbitrum/Electra-Devnet-1-TODO-1435a623c2444a2484fead331eba680a)
- [v1.5.0-alpha.3 release issue](https://github.com/ethereum/consensus-specs/pull/3786)
- [Pari's progress thread on discord](https://discord.com/channels/595666850260713488/1252277408044683294/1253349990760321168)
Pectra devnet-1 is based on v1.5.0-alpha.3 of the consensus spec.
@potuz
potuz / latest-blocks.py
Last active November 26, 2020 12:37
Show latests blocks in eth 2.0
#!/usr/bin/env python
from eth2spec.phase0 import spec
import requests
import json
#import sys, getopt
import base64
#The base address of the beacon-node
base_url = 'http://localhost:3501/eth/v1alpha1/'