Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 638 Bytes

Blockchain-import-and-export-instructions.md

File metadata and controls

39 lines (34 loc) · 638 Bytes
name category
Blockchain Import/Export

Note: Binary format is concatenated RLP-encoded blocks

C++

Import:

eth --import <filename>

Formats supported: binary

Export:

eth --export Myfile --format binary --from 45 --to latest

Formats supported: hex (newlines separating), binary or JSON --from and --to also support blockhashes

Go

Import

geth import <filename>

Formats supported: binary

Genesis block:

geth --genesis <filename> --genesisnonce <nonce>

Formats supported: json

Export

geth export <filename>

Formats supported: binary

Python