mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
25 lines
2.2 KiB
Go
25 lines
2.2 KiB
Go
// Copyright 2017 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package core
|
|
|
|
// Constants containing the genesis allocation of built-in genesis blocks.
|
|
// Their content is an RLP-encoded list of (address, balance) tuples.
|
|
// Use mkalloc.go to create/update them.
|
|
|
|
const mainnetAllocData = "\xf8\x85\xe0\x94\x15eg\x15\x06\x8a\xb0\xdb\xdf\n\xb0\aH\xa8\xa1\x9e@\U0008148a\xd3\xc2\x1b\xce\xcc\xed\xa1\x00\x00\x00\xe0\x94\x93\xde\u02b0\xcdtU\x98\x86\x0fx*\xc1\xe8\xf0F\u02d9\u860a\x02\x1e\x19\xe0\u027a\xb2@\x00\x00\u153b\x94\xf0\u03b3\"W'[*z\x9c\tL\x13\xe4i\xb4V>\x8b\bE\x95\x16\x14\x01HJ\x00\x00\x00\xe0\x94\xc0u\xfa\x11\xf8[\xda:\xab\xa6q\x06\"j\xaf\bj\xc1oN\x8a\x15-\x02\xc7\xe1J\xf6\x80\x00\x00"
|
|
const testnetAllocData = "\xf8\x85\xe0\x94\x15eg\x15\x06\x8a\xb0\xdb\xdf\n\xb0\aH\xa8\xa1\x9e@\U0008148a\xd3\xc2\x1b\xce\xcc\xed\xa1\x00\x00\x00\xe0\x94\x93\xde\u02b0\xcdtU\x98\x86\x0fx*\xc1\xe8\xf0F\u02d9\u860a\x02\x1e\x19\xe0\u027a\xb2@\x00\x00\u153b\x94\xf0\u03b3\"W'[*z\x9c\tL\x13\xe4i\xb4V>\x8b\bE\x95\x16\x14\x01HJ\x00\x00\x00\xe0\x94\xc0u\xfa\x11\xf8[\xda:\xab\xa6q\x06\"j\xaf\bj\xc1oN\x8a\x15-\x02\xc7\xe1J\xf6\x80\x00\x00"
|
|
const devAllocData = "\xf8\x85\xe0\x94\x15eg\x15\x06\x8a\xb0\xdb\xdf\n\xb0\aH\xa8\xa1\x9e@\U0008148a\xd3\xc2\x1b\xce\xcc\xed\xa1\x00\x00\x00\xe0\x94\x93\xde\u02b0\xcdtU\x98\x86\x0fx*\xc1\xe8\xf0F\u02d9\u860a\x02\x1e\x19\xe0\u027a\xb2@\x00\x00\u153b\x94\xf0\u03b3\"W'[*z\x9c\tL\x13\xe4i\xb4V>\x8b\bE\x95\x16\x14\x01HJ\x00\x00\x00\xe0\x94\xc0u\xfa\x11\xf8[\xda:\xab\xa6q\x06\"j\xaf\bj\xc1oN\x8a\x15-\x02\xc7\xe1J\xf6\x80\x00\x00"
|