forked from mirror/go-ethereum
commit
917050dc30
@ -0,0 +1,259 @@ |
||||
package main |
||||
|
||||
import ( |
||||
"fmt" |
||||
"net" |
||||
"net/http" |
||||
"os" |
||||
"time" |
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/utils" |
||||
"github.com/ethereum/go-ethereum/core/types" |
||||
"github.com/ethereum/go-ethereum/common" |
||||
"github.com/ethereum/go-ethereum/rlp" |
||||
"github.com/ethereum/go-ethereum/rpc" |
||||
"github.com/ethereum/go-ethereum/state" |
||||
"github.com/ethereum/go-ethereum/xeth" |
||||
"github.com/obscuren/otto" |
||||
) |
||||
|
||||
/* |
||||
node admin bindings |
||||
*/ |
||||
|
||||
func (js *jsre) adminBindings() { |
||||
js.re.Set("admin", struct{}{}) |
||||
t, _ := js.re.Get("admin") |
||||
admin := t.Object() |
||||
admin.Set("suggestPeer", js.suggestPeer) |
||||
admin.Set("startRPC", js.startRPC) |
||||
admin.Set("startMining", js.startMining) |
||||
admin.Set("stopMining", js.stopMining) |
||||
admin.Set("nodeInfo", js.nodeInfo) |
||||
admin.Set("peers", js.peers) |
||||
admin.Set("newAccount", js.newAccount) |
||||
admin.Set("unlock", js.unlock) |
||||
admin.Set("import", js.importChain) |
||||
admin.Set("export", js.exportChain) |
||||
admin.Set("dumpBlock", js.dumpBlock) |
||||
} |
||||
|
||||
func (js *jsre) startMining(call otto.FunctionCall) otto.Value { |
||||
_, err := call.Argument(0).ToInteger() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
// threads now ignored
|
||||
err = js.ethereum.StartMining() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) stopMining(call otto.FunctionCall) otto.Value { |
||||
js.ethereum.StopMining() |
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) startRPC(call otto.FunctionCall) otto.Value { |
||||
addr, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
port, err := call.Argument(1).ToInteger() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
dataDir := js.ethereum.DataDir |
||||
|
||||
l, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, port)) |
||||
if err != nil { |
||||
fmt.Printf("Can't listen on %s:%d: %v", addr, port, err) |
||||
return otto.FalseValue() |
||||
} |
||||
go http.Serve(l, rpc.JSONRPC(xeth.New(js.ethereum, nil), dataDir)) |
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) suggestPeer(call otto.FunctionCall) otto.Value { |
||||
nodeURL, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
err = js.ethereum.SuggestPeer(nodeURL) |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) unlock(call otto.FunctionCall) otto.Value { |
||||
addr, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
seconds, err := call.Argument(2).ToInteger() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
arg := call.Argument(1) |
||||
var passphrase string |
||||
if arg.IsUndefined() { |
||||
fmt.Println("Please enter a passphrase now.") |
||||
passphrase, err = readPassword("Passphrase: ", true) |
||||
if err != nil { |
||||
utils.Fatalf("%v", err) |
||||
} |
||||
} else { |
||||
passphrase, err = arg.ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
} |
||||
am := js.ethereum.AccountManager() |
||||
// err := am.Unlock(common.FromHex(split[0]), split[1])
|
||||
// if err != nil {
|
||||
// utils.Fatalf("Unlock account failed '%v'", err)
|
||||
// }
|
||||
err = am.TimedUnlock(common.FromHex(addr), passphrase, time.Duration(seconds)*time.Second) |
||||
if err != nil { |
||||
fmt.Printf("Unlock account failed '%v'\n", err) |
||||
return otto.FalseValue() |
||||
} |
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) newAccount(call otto.FunctionCall) otto.Value { |
||||
arg := call.Argument(0) |
||||
var passphrase string |
||||
if arg.IsUndefined() { |
||||
fmt.Println("The new account will be encrypted with a passphrase.") |
||||
fmt.Println("Please enter a passphrase now.") |
||||
auth, err := readPassword("Passphrase: ", true) |
||||
if err != nil { |
||||
utils.Fatalf("%v", err) |
||||
} |
||||
confirm, err := readPassword("Repeat Passphrase: ", false) |
||||
if err != nil { |
||||
utils.Fatalf("%v", err) |
||||
} |
||||
if auth != confirm { |
||||
utils.Fatalf("Passphrases did not match.") |
||||
} |
||||
passphrase = auth |
||||
} else { |
||||
var err error |
||||
passphrase, err = arg.ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
} |
||||
acct, err := js.ethereum.AccountManager().NewAccount(passphrase) |
||||
if err != nil { |
||||
fmt.Printf("Could not create the account: %v", err) |
||||
return otto.UndefinedValue() |
||||
} |
||||
return js.re.ToVal(common.Bytes2Hex(acct.Address)) |
||||
} |
||||
|
||||
func (js *jsre) nodeInfo(call otto.FunctionCall) otto.Value { |
||||
return js.re.ToVal(js.ethereum.NodeInfo()) |
||||
} |
||||
|
||||
func (js *jsre) peers(call otto.FunctionCall) otto.Value { |
||||
return js.re.ToVal(js.ethereum.PeersInfo()) |
||||
} |
||||
|
||||
func (js *jsre) importChain(call otto.FunctionCall) otto.Value { |
||||
if len(call.ArgumentList) == 0 { |
||||
fmt.Println("err: require file name") |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
fn, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
var fh *os.File |
||||
fh, err = os.OpenFile(fn, os.O_RDONLY, os.ModePerm) |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
defer fh.Close() |
||||
|
||||
var blocks types.Blocks |
||||
if err = rlp.Decode(fh, &blocks); err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
js.ethereum.ChainManager().Reset() |
||||
if err = js.ethereum.ChainManager().InsertChain(blocks); err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) exportChain(call otto.FunctionCall) otto.Value { |
||||
if len(call.ArgumentList) == 0 { |
||||
fmt.Println("err: require file name") |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
fn, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
data := js.ethereum.ChainManager().Export() |
||||
if err := common.WriteFile(fn, data); err != nil { |
||||
fmt.Println(err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (js *jsre) dumpBlock(call otto.FunctionCall) otto.Value { |
||||
var block *types.Block |
||||
if len(call.ArgumentList) > 0 { |
||||
if call.Argument(0).IsNumber() { |
||||
num, _ := call.Argument(0).ToInteger() |
||||
block = js.ethereum.ChainManager().GetBlockByNumber(uint64(num)) |
||||
} else if call.Argument(0).IsString() { |
||||
hash, _ := call.Argument(0).ToString() |
||||
block = js.ethereum.ChainManager().GetBlock(common.Hex2Bytes(hash)) |
||||
} else { |
||||
fmt.Println("invalid argument for dump. Either hex string or number") |
||||
} |
||||
|
||||
} else { |
||||
block = js.ethereum.ChainManager().CurrentBlock() |
||||
} |
||||
if block == nil { |
||||
fmt.Println("block not found") |
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
statedb := state.New(block.Root(), js.ethereum.StateDb()) |
||||
dump := statedb.RawDump() |
||||
return js.re.ToVal(dump) |
||||
|
||||
} |
@ -0,0 +1,252 @@ |
||||
package main |
||||
|
||||
import ( |
||||
"fmt" |
||||
"github.com/obscuren/otto" |
||||
"os" |
||||
"path" |
||||
"testing" |
||||
|
||||
"github.com/ethereum/go-ethereum/accounts" |
||||
"github.com/ethereum/go-ethereum/common" |
||||
"github.com/ethereum/go-ethereum/crypto" |
||||
"github.com/ethereum/go-ethereum/eth" |
||||
) |
||||
|
||||
var port = 30300 |
||||
|
||||
func testJEthRE(t *testing.T) (repl *jsre, ethereum *eth.Ethereum, err error) { |
||||
os.RemoveAll("/tmp/eth/") |
||||
err = os.MkdirAll("/tmp/eth/keys/e273f01c99144c438695e10f24926dc1f9fbf62d/", os.ModePerm) |
||||
if err != nil { |
||||
t.Errorf("%v", err) |
||||
return |
||||
} |
||||
err = os.MkdirAll("/tmp/eth/data", os.ModePerm) |
||||
if err != nil { |
||||
t.Errorf("%v", err) |
||||
return |
||||
} |
||||
// FIXME: this does not work ATM
|
||||
ks := crypto.NewKeyStorePlain("/tmp/eth/keys") |
||||
common.WriteFile("/tmp/eth/keys/e273f01c99144c438695e10f24926dc1f9fbf62d/e273f01c99144c438695e10f24926dc1f9fbf62d", |
||||
[]byte(`{"Id":"RhRXD+fNRKS4jx+7ZfEsNA==","Address":"4nPwHJkUTEOGleEPJJJtwfn79i0=","PrivateKey":"h4ACVpe74uIvi5Cg/2tX/Yrm2xdr3J7QoMbMtNX2CNc="}`)) |
||||
|
||||
port++ |
||||
ethereum, err = eth.New(ð.Config{ |
||||
DataDir: "/tmp/eth", |
||||
AccountManager: accounts.NewManager(ks), |
||||
Port: fmt.Sprintf("%d", port), |
||||
MaxPeers: 10, |
||||
Name: "test", |
||||
}) |
||||
|
||||
if err != nil { |
||||
t.Errorf("%v", err) |
||||
return |
||||
} |
||||
assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext") |
||||
repl = newJSRE(ethereum, assetPath) |
||||
return |
||||
} |
||||
|
||||
func TestNodeInfo(t *testing.T) { |
||||
repl, ethereum, err := testJEthRE(t) |
||||
if err != nil { |
||||
t.Errorf("error creating jsre, got %v", err) |
||||
return |
||||
} |
||||
err = ethereum.Start() |
||||
if err != nil { |
||||
t.Errorf("error starting ethereum: %v", err) |
||||
return |
||||
} |
||||
defer ethereum.Stop() |
||||
|
||||
val, err := repl.re.Run("admin.nodeInfo()") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
exp, err := val.Export() |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
nodeInfo, ok := exp.(*eth.NodeInfo) |
||||
if !ok { |
||||
t.Errorf("expected nodeInfo, got %v", err) |
||||
} |
||||
exp = "test" |
||||
got := nodeInfo.Name |
||||
if exp != got { |
||||
t.Errorf("expected %v, got %v", exp, got) |
||||
} |
||||
exp = 30301 |
||||
port := nodeInfo.DiscPort |
||||
if exp != port { |
||||
t.Errorf("expected %v, got %v", exp, port) |
||||
} |
||||
exp = 30301 |
||||
port = nodeInfo.TCPPort |
||||
if exp != port { |
||||
t.Errorf("expected %v, got %v", exp, port) |
||||
} |
||||
} |
||||
|
||||
func TestAccounts(t *testing.T) { |
||||
repl, ethereum, err := testJEthRE(t) |
||||
if err != nil { |
||||
t.Errorf("error creating jsre, got %v", err) |
||||
return |
||||
} |
||||
err = ethereum.Start() |
||||
if err != nil { |
||||
t.Errorf("error starting ethereum: %v", err) |
||||
return |
||||
} |
||||
defer ethereum.Stop() |
||||
|
||||
val, err := repl.re.Run("eth.coinbase") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
|
||||
pp, err := repl.re.PrettyPrint(val) |
||||
if err != nil { |
||||
t.Errorf("%v", err) |
||||
} |
||||
|
||||
if !val.IsString() { |
||||
t.Errorf("incorrect type, expected string, got %v: %v", val, pp) |
||||
} |
||||
strVal, _ := val.ToString() |
||||
expected := "0xe273f01c99144c438695e10f24926dc1f9fbf62d" |
||||
if strVal != expected { |
||||
t.Errorf("incorrect result, expected %s, got %v", expected, strVal) |
||||
} |
||||
|
||||
val, err = repl.re.Run(`admin.newAccount("password")`) |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
addr, err := val.ToString() |
||||
if err != nil { |
||||
t.Errorf("expected string, got %v", err) |
||||
} |
||||
|
||||
val, err = repl.re.Run("eth.accounts") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
exp, err := val.Export() |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
addrs, ok := exp.([]string) |
||||
if !ok { |
||||
t.Errorf("expected []string, got %v", err) |
||||
} |
||||
if len(addrs) != 2 || (addr != addrs[0][2:] && addr != addrs[1][2:]) { |
||||
t.Errorf("expected addrs == [<default>, <new>], got %v (%v)", addrs, addr) |
||||
} |
||||
|
||||
} |
||||
|
||||
func TestBlockChain(t *testing.T) { |
||||
repl, ethereum, err := testJEthRE(t) |
||||
if err != nil { |
||||
t.Errorf("error creating jsre, got %v", err) |
||||
return |
||||
} |
||||
err = ethereum.Start() |
||||
if err != nil { |
||||
t.Errorf("error starting ethereum: %v", err) |
||||
return |
||||
} |
||||
defer ethereum.Stop() |
||||
|
||||
// should get current block
|
||||
val0, err := repl.re.Run("admin.dumpBlock()") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
|
||||
fn := "/tmp/eth/data/blockchain.0" |
||||
_, err = repl.re.Run("admin.export(\"" + fn + "\")") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
if _, err = os.Stat(fn); err != nil { |
||||
t.Errorf("expected no error on file, got %v", err) |
||||
} |
||||
|
||||
_, err = repl.re.Run("admin.import(\"" + fn + "\")") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
|
||||
var val1 otto.Value |
||||
|
||||
// should get current block
|
||||
val1, err = repl.re.Run("admin.dumpBlock()") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
|
||||
// FIXME: neither != , nor reflect.DeepEqual works, doing string comparison
|
||||
v0 := fmt.Sprintf("%v", val0) |
||||
v1 := fmt.Sprintf("%v", val1) |
||||
if v0 != v1 { |
||||
t.Errorf("expected same head after export-import, got %v (!=%v)", v1, v0) |
||||
} |
||||
} |
||||
|
||||
func TestMining(t *testing.T) { |
||||
repl, ethereum, err := testJEthRE(t) |
||||
if err != nil { |
||||
t.Errorf("error creating jsre, got %v", err) |
||||
return |
||||
} |
||||
err = ethereum.Start() |
||||
if err != nil { |
||||
t.Errorf("error starting ethereum: %v", err) |
||||
return |
||||
} |
||||
defer ethereum.Stop() |
||||
|
||||
val, err := repl.re.Run("eth.mining") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
var mining bool |
||||
mining, err = val.ToBoolean() |
||||
if err != nil { |
||||
t.Errorf("expected boolean, got %v", err) |
||||
} |
||||
if mining { |
||||
t.Errorf("expected false (not mining), got true") |
||||
} |
||||
|
||||
} |
||||
|
||||
func TestRPC(t *testing.T) { |
||||
repl, ethereum, err := testJEthRE(t) |
||||
if err != nil { |
||||
t.Errorf("error creating jsre, got %v", err) |
||||
return |
||||
} |
||||
err = ethereum.Start() |
||||
if err != nil { |
||||
t.Errorf("error starting ethereum: %v", err) |
||||
return |
||||
} |
||||
defer ethereum.Stop() |
||||
|
||||
val, err := repl.re.Run(`admin.startRPC("127.0.0.1", 5004)`) |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
success, _ := val.ToBoolean() |
||||
if !success { |
||||
t.Errorf("expected true (started), got false") |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
@ -1,103 +0,0 @@ |
||||
package javascript |
||||
|
||||
import ( |
||||
"fmt" |
||||
"io/ioutil" |
||||
"os" |
||||
"path" |
||||
"path/filepath" |
||||
|
||||
"github.com/ethereum/go-ethereum/logger" |
||||
"github.com/ethereum/go-ethereum/xeth" |
||||
"github.com/obscuren/otto" |
||||
) |
||||
|
||||
var jsrelogger = logger.NewLogger("JSRE") |
||||
|
||||
type JSRE struct { |
||||
Vm *otto.Otto |
||||
xeth *xeth.XEth |
||||
|
||||
objectCb map[string][]otto.Value |
||||
} |
||||
|
||||
func (jsre *JSRE) LoadExtFile(path string) { |
||||
result, err := ioutil.ReadFile(path) |
||||
if err == nil { |
||||
jsre.Vm.Run(result) |
||||
} else { |
||||
jsrelogger.Infoln("Could not load file:", path) |
||||
} |
||||
} |
||||
|
||||
func (jsre *JSRE) LoadIntFile(file string) { |
||||
assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext") |
||||
jsre.LoadExtFile(path.Join(assetPath, file)) |
||||
} |
||||
|
||||
func NewJSRE(xeth *xeth.XEth) *JSRE { |
||||
re := &JSRE{ |
||||
otto.New(), |
||||
xeth, |
||||
make(map[string][]otto.Value), |
||||
} |
||||
|
||||
// Init the JS lib
|
||||
re.Vm.Run(jsLib) |
||||
|
||||
// Load extra javascript files
|
||||
re.LoadIntFile("bignumber.min.js") |
||||
|
||||
re.Bind("eth", &JSEthereum{re.xeth, re.Vm}) |
||||
|
||||
re.initStdFuncs() |
||||
|
||||
jsrelogger.Infoln("started") |
||||
|
||||
return re |
||||
} |
||||
|
||||
func (self *JSRE) Bind(name string, v interface{}) { |
||||
self.Vm.Set(name, v) |
||||
} |
||||
|
||||
func (self *JSRE) Run(code string) (otto.Value, error) { |
||||
return self.Vm.Run(code) |
||||
} |
||||
|
||||
func (self *JSRE) initStdFuncs() { |
||||
t, _ := self.Vm.Get("eth") |
||||
eth := t.Object() |
||||
eth.Set("require", self.require) |
||||
} |
||||
|
||||
func (self *JSRE) Require(file string) error { |
||||
if len(filepath.Ext(file)) == 0 { |
||||
file += ".js" |
||||
} |
||||
|
||||
fh, err := os.Open(file) |
||||
if err != nil { |
||||
return err |
||||
} |
||||
|
||||
content, _ := ioutil.ReadAll(fh) |
||||
self.Run("exports = {};(function() {" + string(content) + "})();") |
||||
|
||||
return nil |
||||
} |
||||
|
||||
func (self *JSRE) require(call otto.FunctionCall) otto.Value { |
||||
file, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
return otto.UndefinedValue() |
||||
} |
||||
if err := self.Require(file); err != nil { |
||||
fmt.Println("err:", err) |
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
t, _ := self.Vm.Get("exports") |
||||
|
||||
return t |
||||
} |
@ -1,94 +0,0 @@ |
||||
package javascript |
||||
|
||||
import ( |
||||
"fmt" |
||||
"github.com/ethereum/go-ethereum/common" |
||||
"github.com/ethereum/go-ethereum/state" |
||||
"github.com/ethereum/go-ethereum/xeth" |
||||
"github.com/obscuren/otto" |
||||
) |
||||
|
||||
type JSStateObject struct { |
||||
*xeth.Object |
||||
eth *JSEthereum |
||||
} |
||||
|
||||
func (self *JSStateObject) EachStorage(call otto.FunctionCall) otto.Value { |
||||
cb := call.Argument(0) |
||||
|
||||
it := self.Object.Trie().Iterator() |
||||
for it.Next() { |
||||
cb.Call(self.eth.toVal(self), self.eth.toVal(common.Bytes2Hex(it.Key)), self.eth.toVal(common.Bytes2Hex(it.Value))) |
||||
} |
||||
|
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
// The JSEthereum object attempts to wrap the PEthereum object and returns
|
||||
// meaningful javascript objects
|
||||
type JSBlock struct { |
||||
*xeth.Block |
||||
eth *JSEthereum |
||||
} |
||||
|
||||
func (self *JSBlock) GetTransaction(hash string) otto.Value { |
||||
return self.eth.toVal(self.Block.GetTransaction(hash)) |
||||
} |
||||
|
||||
type JSLog struct { |
||||
Address string `json:address` |
||||
Topics []string `json:topics` |
||||
Number int32 `json:number` |
||||
Data string `json:data` |
||||
} |
||||
|
||||
func NewJSLog(log state.Log) JSLog { |
||||
return JSLog{ |
||||
Address: common.Bytes2Hex(log.Address()), |
||||
Topics: nil, //common.Bytes2Hex(log.Address()),
|
||||
Number: 0, |
||||
Data: common.Bytes2Hex(log.Data()), |
||||
} |
||||
} |
||||
|
||||
type JSEthereum struct { |
||||
*xeth.XEth |
||||
vm *otto.Otto |
||||
} |
||||
|
||||
func (self *JSEthereum) Block(v interface{}) otto.Value { |
||||
if number, ok := v.(int64); ok { |
||||
return self.toVal(&JSBlock{self.XEth.BlockByNumber(number), self}) |
||||
} else if hash, ok := v.(string); ok { |
||||
return self.toVal(&JSBlock{self.XEth.BlockByHash(hash), self}) |
||||
} |
||||
|
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
func (self *JSEthereum) GetStateObject(addr string) otto.Value { |
||||
return self.toVal(&JSStateObject{self.XEth.State().SafeGet(addr), self}) |
||||
} |
||||
|
||||
func (self *JSEthereum) Transact(fromStr, recipient, valueStr, gasStr, gasPriceStr, dataStr string) otto.Value { |
||||
r, err := self.XEth.Transact(fromStr, recipient, valueStr, gasStr, gasPriceStr, dataStr) |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
|
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
return self.toVal(r) |
||||
} |
||||
|
||||
func (self *JSEthereum) toVal(v interface{}) otto.Value { |
||||
result, err := self.vm.ToValue(v) |
||||
|
||||
if err != nil { |
||||
fmt.Println("Value unknown:", err) |
||||
|
||||
return otto.UndefinedValue() |
||||
} |
||||
|
||||
return result |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,115 @@ |
||||
package jsre |
||||
|
||||
import ( |
||||
"fmt" |
||||
"github.com/obscuren/otto" |
||||
"io/ioutil" |
||||
|
||||
"github.com/ethereum/go-ethereum/common" |
||||
) |
||||
|
||||
/* |
||||
JSRE is a generic JS runtime environment embedding the otto JS interpreter. |
||||
It provides some helper functions to |
||||
- load code from files |
||||
- run code snippets |
||||
- require libraries |
||||
- bind native go objects |
||||
*/ |
||||
type JSRE struct { |
||||
assetPath string |
||||
vm *otto.Otto |
||||
} |
||||
|
||||
func New(assetPath string) *JSRE { |
||||
re := &JSRE{ |
||||
assetPath, |
||||
otto.New(), |
||||
} |
||||
|
||||
// load prettyprint func definition
|
||||
re.vm.Run(pp_js) |
||||
re.vm.Set("loadScript", re.loadScript) |
||||
|
||||
return re |
||||
} |
||||
|
||||
// Exec(file) loads and runs the contents of a file
|
||||
// if a relative path is given, the jsre's assetPath is used
|
||||
func (self *JSRE) Exec(file string) error { |
||||
return self.exec(common.AbsolutePath(self.assetPath, file)) |
||||
} |
||||
|
||||
func (self *JSRE) exec(path string) error { |
||||
code, err := ioutil.ReadFile(path) |
||||
if err != nil { |
||||
return err |
||||
} |
||||
_, err = self.vm.Run(code) |
||||
return err |
||||
} |
||||
|
||||
func (self *JSRE) Bind(name string, v interface{}) (err error) { |
||||
self.vm.Set(name, v) |
||||
return |
||||
} |
||||
|
||||
func (self *JSRE) Run(code string) (otto.Value, error) { |
||||
return self.vm.Run(code) |
||||
} |
||||
|
||||
func (self *JSRE) Get(ns string) (otto.Value, error) { |
||||
return self.vm.Get(ns) |
||||
} |
||||
|
||||
func (self *JSRE) Set(ns string, v interface{}) error { |
||||
return self.vm.Set(ns, v) |
||||
} |
||||
|
||||
func (self *JSRE) loadScript(call otto.FunctionCall) otto.Value { |
||||
file, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
return otto.FalseValue() |
||||
} |
||||
if err := self.Exec(file); err != nil { |
||||
fmt.Println("err:", err) |
||||
return otto.FalseValue() |
||||
} |
||||
|
||||
return otto.TrueValue() |
||||
} |
||||
|
||||
func (self *JSRE) PrettyPrint(v interface{}) (val otto.Value, err error) { |
||||
var method otto.Value |
||||
v, err = self.vm.ToValue(v) |
||||
if err != nil { |
||||
return |
||||
} |
||||
method, err = self.vm.Get("prettyPrint") |
||||
if err != nil { |
||||
return |
||||
} |
||||
return method.Call(method, v) |
||||
} |
||||
|
||||
func (self *JSRE) ToVal(v interface{}) otto.Value { |
||||
result, err := self.vm.ToValue(v) |
||||
if err != nil { |
||||
fmt.Println("Value unknown:", err) |
||||
return otto.UndefinedValue() |
||||
} |
||||
return result |
||||
} |
||||
|
||||
func (self *JSRE) Eval(code string) (s string, err error) { |
||||
var val otto.Value |
||||
val, err = self.Run(code) |
||||
if err != nil { |
||||
return |
||||
} |
||||
val, err = self.PrettyPrint(val) |
||||
if err != nil { |
||||
return |
||||
} |
||||
return fmt.Sprintf("%v", val), nil |
||||
} |
@ -0,0 +1,84 @@ |
||||
package jsre |
||||
|
||||
import ( |
||||
"github.com/obscuren/otto" |
||||
"testing" |
||||
|
||||
"github.com/ethereum/go-ethereum/common" |
||||
) |
||||
|
||||
type testNativeObjectBinding struct { |
||||
toVal func(interface{}) otto.Value |
||||
} |
||||
|
||||
type msg struct { |
||||
Msg string |
||||
} |
||||
|
||||
func (no *testNativeObjectBinding) TestMethod(call otto.FunctionCall) otto.Value { |
||||
m, err := call.Argument(0).ToString() |
||||
if err != nil { |
||||
return otto.UndefinedValue() |
||||
} |
||||
return no.toVal(&msg{m}) |
||||
} |
||||
|
||||
func TestExec(t *testing.T) { |
||||
jsre := New("/tmp") |
||||
|
||||
common.WriteFile("/tmp/test.js", []byte(`msg = "testMsg"`)) |
||||
err := jsre.Exec("test.js") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
val, err := jsre.Run("msg") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
if !val.IsString() { |
||||
t.Errorf("expected string value, got %v", val) |
||||
} |
||||
exp := "testMsg" |
||||
got, _ := val.ToString() |
||||
if exp != got { |
||||
t.Errorf("expected '%v', got '%v'", exp, got) |
||||
} |
||||
} |
||||
|
||||
func TestBind(t *testing.T) { |
||||
jsre := New("/tmp") |
||||
|
||||
jsre.Bind("no", &testNativeObjectBinding{jsre.ToVal}) |
||||
|
||||
val, err := jsre.Run(`no.testMethod("testMsg")`) |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
pp, err := jsre.PrettyPrint(val) |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
t.Logf("no: %v", pp) |
||||
} |
||||
|
||||
func TestLoadScript(t *testing.T) { |
||||
jsre := New("/tmp") |
||||
|
||||
common.WriteFile("/tmp/test.js", []byte(`msg = "testMsg"`)) |
||||
_, err := jsre.Run(`loadScript("test.js")`) |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
val, err := jsre.Run("msg") |
||||
if err != nil { |
||||
t.Errorf("expected no error, got %v", err) |
||||
} |
||||
if !val.IsString() { |
||||
t.Errorf("expected string value, got %v", val) |
||||
} |
||||
exp := "testMsg" |
||||
got, _ := val.ToString() |
||||
if exp != got { |
||||
t.Errorf("expected '%v', got '%v'", exp, got) |
||||
} |
||||
} |
@ -0,0 +1,43 @@ |
||||
package rpc |
||||
|
||||
import ( |
||||
"encoding/json" |
||||
// "fmt"
|
||||
"github.com/obscuren/otto" |
||||
) |
||||
|
||||
type Jeth struct { |
||||
ethApi *EthereumApi |
||||
toVal func(interface{}) otto.Value |
||||
} |
||||
|
||||
func NewJeth(ethApi *EthereumApi, toVal func(interface{}) otto.Value) *Jeth { |
||||
return &Jeth{ethApi, toVal} |
||||
} |
||||
|
||||
func (self *Jeth) err(code int, msg string, id interface{}) otto.Value { |
||||
rpcerr := &RpcErrorObject{code, msg} |
||||
rpcresponse := &RpcErrorResponse{Jsonrpc: jsonrpcver, Id: id, Error: rpcerr} |
||||
return self.toVal(rpcresponse) |
||||
} |
||||
|
||||
func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) { |
||||
reqif, err := call.Argument(0).Export() |
||||
if err != nil { |
||||
return self.err(-32700, err.Error(), nil) |
||||
} |
||||
|
||||
jsonreq, err := json.Marshal(reqif) |
||||
|
||||
var req RpcRequest |
||||
err = json.Unmarshal(jsonreq, &req) |
||||
|
||||
var respif interface{} |
||||
err = self.ethApi.GetRequestReply(&req, &respif) |
||||
if err != nil { |
||||
return self.err(-32603, err.Error(), req.Id) |
||||
} |
||||
rpcresponse := &RpcSuccessResponse{Jsonrpc: jsonrpcver, Id: req.Id, Result: respif} |
||||
response = self.toVal(rpcresponse) |
||||
return |
||||
} |
@ -1,8 +1,16 @@ |
||||
[ |
||||
{ |
||||
{ |
||||
"aes1": { |
||||
"decryption_type": "aes_ctr", |
||||
"key": "abb51256c1324a1350598653f46aa3ad693ac3cf5d05f36eba3f495a1f51590f", |
||||
"cipher": "84a727bc81fa4b13947dc9728b88fd08", |
||||
"payload": "000102030405060708090a0b0c0d0e0f" |
||||
}, |
||||
|
||||
"ecies1": { |
||||
"decryption_type": "ecies_sec1_altered", |
||||
"key": "5e173f6ac3c669587538e7727cf19b782a4f2fda07c1eaa662c593e5e85e3051", |
||||
"cipher": "049934a7b2d7f9af8fd9db941d9da281ac9381b5740e1f64f7092f3588d4f87f5ce55191a6653e5e80c1c5dd538169aa123e70dc6ffc5af1827e546c0e958e42dad355bcc1fcb9cdf2cf47ff524d2ad98cbf275e661bf4cf00960e74b5956b799771334f426df007350b46049adb21a6e78ab1408d5e6ccde6fb5e69f0f4c92bb9c725c02f99fa72b9cdc8dd53cff089e0e73317f61cc5abf6152513cb7d833f09d2851603919bf0fbe44d79a09245c6e8338eb502083dc84b846f2fee1cc310d2cc8b1b9334728f97220bb799376233e113", |
||||
"payload": "802b052f8b066640bba94a4fc39d63815c377fced6fcb84d27f791c9921ddf3e9bf0108e298f490812847109cbd778fae393e80323fd643209841a3b7f110397f37ec61d84cea03dcc5e8385db93248584e8af4b4d1c832d8c7453c0089687a700" |
||||
} |
||||
] |
||||
|
||||
} |
||||
|
@ -1,108 +0,0 @@ |
||||
{ |
||||
"minDifficulty" : { |
||||
"blocks" : [ |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "0000000000000000000000000000000000000000", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "99902343", |
||||
"gasUsed" : "21000", |
||||
"hash" : "e81ff5d3eb418460526db97082c06e2820f24e1868790665d4ae003710e6bfc3", |
||||
"mixHash" : "5d5b77e21716069fa77da47ad894c1743fed89c50e57b9b00d9004304a35f9bd", |
||||
"nonce" : "d2a092e6cfc8f7ac", |
||||
"number" : "1", |
||||
"parentHash" : "30b0ed1ccf73c84d997bf91423148350ca6d159b445fdc8d60c72b2cf2243b6d", |
||||
"receiptTrie" : "eeceeeb4567b38e5b86275e3a36ac4ff55b9764b427714426710c3631a29011a", |
||||
"seedHash" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "0178d4488f358061cbf1a6086fa270e4a7d6ce54a26947eb84a5157251090124", |
||||
"timestamp" : "1425906716", |
||||
"transactionsTrie" : "b5a8fdeebebe34f382a160480b63a193d0217b67f9308ebb5686f144deffd212", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90284f9021ba030b0ed1ccf73c84d997bf91423148350ca6d159b445fdc8d60c72b2cf2243b6da01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940000000000000000000000000000000000000000a00178d4488f358061cbf1a6086fa270e4a7d6ce54a26947eb84a5157251090124a0b5a8fdeebebe34f382a160480b63a193d0217b67f9308ebb5686f144deffd212a0eeceeeb4567b38e5b86275e3a36ac4ff55b9764b427714426710c3631a29011ab901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000018405f463878252088454fd9c1c80a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a05d5b77e21716069fa77da47ad894c1743fed89c50e57b9b00d9004304a35f9bd88d2a092e6cfc8f7acf863f86180018404c4b43294095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba0fab97fc05c9b246724d7b247d813793b602d61068fe6f36a36350ba044209ad6a01845b43d8622fc0b584af1b878b530a0ecbad4f5436d08cd2f6a86188e401064c0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "80000050", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"r" : "0xfab97fc05c9b246724d7b247d813793b602d61068fe6f36a36350ba044209ad6", |
||||
"s" : "0x1845b43d8622fc0b584af1b878b530a0ecbad4f5436d08cd2f6a86188e401064", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "27", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "0000000000000000000000000000000000000000", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "99804806", |
||||
"gasUsed" : "21000", |
||||
"hash" : "1028df1afd1f7774475fb17392fe627dc60e52813d92f4c954073ed8c5b67a2b", |
||||
"mixHash" : "cd1f629d7c3b273968cdd37578ee0002074f11c27093db75e82b53e1d786bb3b", |
||||
"nonce" : "9658295f7acc7fa4", |
||||
"number" : "2", |
||||
"parentHash" : "e81ff5d3eb418460526db97082c06e2820f24e1868790665d4ae003710e6bfc3", |
||||
"receiptTrie" : "9f4d63754d02ccfa9a28d8a5795c462827a14370f01ec43925c95cd172b32672", |
||||
"seedHash" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "9c6c6cdb405d0d1435cf5fba044c72eed942c2764fb11062a17349b819f87252", |
||||
"timestamp" : "1425906742", |
||||
"transactionsTrie" : "3d96dd79195231adfd453a5e0ee6bbb471474b329c16e336e1b48e9261996057", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90283f9021ba0e81ff5d3eb418460526db97082c06e2820f24e1868790665d4ae003710e6bfc3a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940000000000000000000000000000000000000000a09c6c6cdb405d0d1435cf5fba044c72eed942c2764fb11062a17349b819f87252a03d96dd79195231adfd453a5e0ee6bbb471474b329c16e336e1b48e9261996057a09f4d63754d02ccfa9a28d8a5795c462827a14370f01ec43925c95cd172b32672b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000028405f2e6868252088454fd9c3680a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0cd1f629d7c3b273968cdd37578ee0002074f11c27093db75e82b53e1d786bb3b889658295f7acc7fa4f862f8600180837a120094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca08729cfaaa0e6e0d3039d601ef6b51efb1776d0cb820c1713de77719ecbd5d995a0fa54a102bd9ac7e3d1dba00651abfba748cedc6c4692ed5a54fc7250ef8d4e2dc0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "8000000", |
||||
"gasPrice" : "0", |
||||
"nonce" : "1", |
||||
"r" : "0x8729cfaaa0e6e0d3039d601ef6b51efb1776d0cb820c1713de77719ecbd5d995", |
||||
"s" : "0xfa54a102bd9ac7e3d1dba00651abfba748cedc6c4692ed5a54fc7250ef8d4e2d", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "100000000", |
||||
"gasUsed" : "0", |
||||
"hash" : "30b0ed1ccf73c84d997bf91423148350ca6d159b445fdc8d60c72b2cf2243b6d", |
||||
"mixHash" : "53bbad621e37e0e40bfec11489f39e7769d4473174f8a634ec23115551dde044", |
||||
"nonce" : "b4da0c9c59ed8c18", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"seedHash" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "7dba07d6b448a186e9612e5f737d1c909dce473e53199901a302c00646d523c1", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,837 @@ |
||||
{ |
||||
"WrongCharAtRLP" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90260f901f9a083cafc574evf51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"RandomByteAtTheEnd" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90260f901f9a083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0ae" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"ParnetHashIncorrectSizeTooShort" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf9025ef901f79efc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"ParnetHashPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba2000083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"ParnetHashIncorrectSizeTooLong" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba212ef83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"UncleHashPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a200001dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"CoinbasePrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d493479600008888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"StateRootPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a20000ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"TransactionsTriePrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a200005fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"ReceiptTriePrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a20000bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"BloomPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b901020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"DifficultyPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085000002000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"NumberPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000820001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"GasLimitPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000018500002fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"GasUsedPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd88500005208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"TimestampPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd88252088600005506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"ExtradataPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb07820000a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"MixHashPrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a20000bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff49888a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"NoncePrefixedWith0000" : { |
||||
"blocks" : [ |
||||
{ |
||||
"rlp" : "0xf90262f901fba083cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017a05fe50b260da6308036625b850b5d6ced6d0a9f814c0688bc91ffb7b7a3a54b67a0bc37d79753ad738a6dac4921e57392f145d8887476de3f783dfa7edae9283e52b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd8825208845506eb0780a0bd4472abb6659ebe3ee06ee4d7b72a00a9f4d001caca51342001075469aff4988a0000a13a5a8c8f2bb1c4f861f85f800a82c35094095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba09bea4c4daac7c7c52e093e6a4c35dbbcf8856f1af7b059ba20253e70848d094fa08a8fae537ce25ed8cb5af9adac3f141af69bd515bd2ba031522df09b97dd72b1c0" |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "83cafc574e1f51ba9dc0568fc617a08ea2429fb384059c972f13b19fa1c8dd55", |
||||
"mixHash" : "d9cfa2aeba6f62581b6c0d69659516ea3665de39b7ce4d4d4dd8a4f7d027a80e", |
||||
"nonce" : "a412653f091f8bd7", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "cafd881ab193703b83816c49ff6c2bf6ba6f464a1be560c42106128c8dbc35e7", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,500 @@ |
||||
{ |
||||
"JS_API_Tests" : { |
||||
"blocks" : [ |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "387356", |
||||
"hash" : "de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3a", |
||||
"mixHash" : "af3c8aff101f9f657394f6867be5024f5aca35a3840f433c9b6820ede8624f7e", |
||||
"nonce" : "5e34e0d31014d733", |
||||
"number" : "1", |
||||
"parentHash" : "e9227484578ae675987de29dcdc2d06c383dbdc8d7c4810a2b406974e78c5438", |
||||
"receiptTrie" : "99706698ada4f1369b0cc0f46a2a7b206fe1529e15bb24b39e953770ce1325ca", |
||||
"stateRoot" : "08a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0", |
||||
"timestamp" : "1426516407", |
||||
"transactionsTrie" : "35970865cb7cce3ff3b0ff382fdcf4db8f13465d045d95de401218ca2d797a5e", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf906c1f901faa0e9227484578ae675987de29dcdc2d06c383dbdc8d7c4810a2b406974e78c5438a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a008a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0a035970865cb7cce3ff3b0ff382fdcf4db8f13465d045d95de401218ca2d797a5ea099706698ada4f1369b0cc0f46a2a7b206fe1529e15bb24b39e953770ce1325cab90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd88305e91c845506e9b780a0af3c8aff101f9f657394f6867be5024f5aca35a3840f433c9b6820ede8624f7e885e34e0d31014d733f904c0f86080018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca0a6c149297408d170b046d2c8cc04468cc12910c65a6464c363721d7096d51307a00b77763e6cc641d57a3a0eb2c6a32c553ab4f6a35e1703cc2ffbefc603fbc67ef9045b0101830927c080830186a0b9040a60406103ca600439600451602451336000819055506000600481905550816001819055508060028190555042600581905550336003819055505050610381806100496000396000f30060003560e060020a9004806343d726d61461004257806391b7f5ed14610050578063d686f9ee14610061578063f5bade661461006f578063fcfff16f1461008057005b61004a6101de565b60006000f35b61005b6004356100bf565b60006000f35b610069610304565b60006000f35b61007a60043561008e565b60006000f35b6100886100f0565b60006000f35b600054600160a060020a031633600160a060020a031614156100af576100b4565b6100bc565b806001819055505b50565b600054600160a060020a031633600160a060020a031614156100e0576100e5565b6100ed565b806002819055505b50565b600054600160a060020a031633600160a060020a031614806101255750600354600160a060020a031633600160a060020a0316145b61012e57610161565b60016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a16101dc565b60045460011480610173575060015434105b6101b85760016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a142600581905550336003819055506101db565b33600160a060020a03166000346000600060006000848787f16101d757005b5050505b5b565b60006004546000146101ef576101f4565b610301565b600054600160a060020a031633600160a060020a031614801561022c5750600054600160a060020a0316600354600160a060020a0316145b61023557610242565b6000600481905550610301565b600354600160a060020a031633600160a060020a03161461026257610300565b600554420360025402905060015481116102c757600354600160a060020a0316600082600154036000600060006000848787f161029b57005b505050600054600160a060020a03166000826000600060006000848787f16102bf57005b5050506102ee565b600054600160a060020a031660006001546000600060006000848787f16102ea57005b5050505b60006004819055506000546003819055505b5b50565b6000600054600160a060020a031633600160a060020a031614156103275761032c565b61037e565b600554420360025402905060015481116103455761037d565b600054600160a060020a031660006001546000600060006000848787f161036857005b50505060006004819055506000546003819055505b5b5056000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000231ba0b2319ed46445a2e93a388b93d78ba73edbb1789db4e37c3a3a41771d7062cc8ea0b6a6d88b55d571571ff18404ea58ffb602190f18b2ff15820b60ed426aecc74cc0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"r" : "0xa6c149297408d170b046d2c8cc04468cc12910c65a6464c363721d7096d51307", |
||||
"s" : "0x0b77763e6cc641d57a3a0eb2c6a32c553ab4f6a35e1703cc2ffbefc603fbc67e", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
}, |
||||
{ |
||||
"data" : "0x60406103ca600439600451602451336000819055506000600481905550816001819055508060028190555042600581905550336003819055505050610381806100496000396000f30060003560e060020a9004806343d726d61461004257806391b7f5ed14610050578063d686f9ee14610061578063f5bade661461006f578063fcfff16f1461008057005b61004a6101de565b60006000f35b61005b6004356100bf565b60006000f35b610069610304565b60006000f35b61007a60043561008e565b60006000f35b6100886100f0565b60006000f35b600054600160a060020a031633600160a060020a031614156100af576100b4565b6100bc565b806001819055505b50565b600054600160a060020a031633600160a060020a031614156100e0576100e5565b6100ed565b806002819055505b50565b600054600160a060020a031633600160a060020a031614806101255750600354600160a060020a031633600160a060020a0316145b61012e57610161565b60016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a16101dc565b60045460011480610173575060015434105b6101b85760016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a142600581905550336003819055506101db565b33600160a060020a03166000346000600060006000848787f16101d757005b5050505b5b565b60006004546000146101ef576101f4565b610301565b600054600160a060020a031633600160a060020a031614801561022c5750600054600160a060020a0316600354600160a060020a0316145b61023557610242565b6000600481905550610301565b600354600160a060020a031633600160a060020a03161461026257610300565b600554420360025402905060015481116102c757600354600160a060020a0316600082600154036000600060006000848787f161029b57005b505050600054600160a060020a03166000826000600060006000848787f16102bf57005b5050506102ee565b600054600160a060020a031660006001546000600060006000848787f16102ea57005b5050505b60006004819055506000546003819055505b5b50565b6000600054600160a060020a031633600160a060020a031614156103275761032c565b61037e565b600554420360025402905060015481116103455761037d565b600054600160a060020a031660006001546000600060006000848787f161036857005b50505060006004819055506000546003819055505b5b505600000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000023", |
||||
"gasLimit" : "600000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "1", |
||||
"r" : "0xb2319ed46445a2e93a388b93d78ba73edbb1789db4e37c3a3a41771d7062cc8e", |
||||
"s" : "0xb6a6d88b55d571571ff18404ea58ffb602190f18b2ff15820b60ed426aecc74c", |
||||
"to" : "", |
||||
"v" : "27", |
||||
"value" : "100000" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "f46199afedc25c50034225cc14c7bd6cb983df0caffdba230dbc2412ad0ffe4a", |
||||
"mixHash" : "0090b23f304397ca8b4426faf6a39eee79bc8e8fe644ac2f97a17b798b42ba01", |
||||
"nonce" : "6670aeca7430910f", |
||||
"number" : "2", |
||||
"parentHash" : "de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3a", |
||||
"receiptTrie" : "eb0c21d30c925ee754721c34e93c0c5f2afce2f6ea8de6f0e379214ee1ba0b1b", |
||||
"stateRoot" : "3d23c81783d5ad734501734ae583ed0b1ddce909e63482c9621b8248f8a467e7", |
||||
"timestamp" : "1426516420", |
||||
"transactionsTrie" : "a07acb17e7d8663401e179841b85e1f9c525ad64a0257e4c45ce932b5690f7d0", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90261f901f9a0de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3aa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a03d23c81783d5ad734501734ae583ed0b1ddce909e63482c9621b8248f8a467e7a0a07acb17e7d8663401e179841b85e1f9c525ad64a0257e4c45ce932b5690f7d0a0eb0c21d30c925ee754721c34e93c0c5f2afce2f6ea8de6f0e379214ee1ba0b1bb90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000002832fefd8825208845506e9c480a00090b23f304397ca8b4426faf6a39eee79bc8e8fe644ac2f97a17b798b42ba01886670aeca7430910ff862f86002018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca0ae755cd415108ecad39640be514b9b48abc86173d4d84c245b85208cdbd1004ea0c7004409b0f31827d5b2036f5b8abd2058401c487f74343d257c81780be6c70fc0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "2", |
||||
"r" : "0xae755cd415108ecad39640be514b9b48abc86173d4d84c245b85208cdbd1004e", |
||||
"s" : "0xc7004409b0f31827d5b2036f5b8abd2058401c487f74343d257c81780be6c70f", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000400000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131136", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "63397", |
||||
"hash" : "f16f9ab4a947c95f2615dcb2e2d3a9b189447fa8fc0b25b3166ba79f213c3156", |
||||
"mixHash" : "e562e0a95053e45314a2346ef2f9ef212f0dd2d88879eccd6c1e54e8370287af", |
||||
"nonce" : "097481c9e66b3b55", |
||||
"number" : "3", |
||||
"parentHash" : "f46199afedc25c50034225cc14c7bd6cb983df0caffdba230dbc2412ad0ffe4a", |
||||
"receiptTrie" : "901688ebcc8548f93494a15f86237f8db43a3edc6cc756bc383b8728cc3f3e34", |
||||
"stateRoot" : "dc1094de9a701d87dccef54664cbd6385a7bcc9b69fc04bb01d063bdec777778", |
||||
"timestamp" : "1426516424", |
||||
"transactionsTrie" : "2fea9899614a11a28f2c3aa358d2b6413e2e1a92d003dd7cf45f8b308ab873d3", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf902c7f901f9a0f46199afedc25c50034225cc14c7bd6cb983df0caffdba230dbc2412ad0ffe4aa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0dc1094de9a701d87dccef54664cbd6385a7bcc9b69fc04bb01d063bdec777778a02fea9899614a11a28f2c3aa358d2b6413e2e1a92d003dd7cf45f8b308ab873d3a0901688ebcc8548f93494a15f86237f8db43a3edc6cc756bc383b8728cc3f3e34b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000004000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000008302004003832fefd882f7a5845506e9c880a0e562e0a95053e45314a2346ef2f9ef212f0dd2d88879eccd6c1e54e8370287af88097481c9e66b3b55f8c8f86003018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca06ea58ad111961b0405e59b425fad3f91d0f64a2b39ce582a8df343db9b5a8a85a0cac83c8d95325558119b4c377d3a1c8ea2833fbf73e631c3abb55990493f4c9ff8640401830927c0946295ee1b4f6dd65047762f924ecd367c17eabf8f4284fcfff16f1ba0fd736923fc272b98e188d889be126405f92c5ad34de8083a7cc8f36ba3653ec7a00561eaeb3cf1a35c0521d394d3a0e8c3c63d6296f7fed7820e79b1c0f5d82347c0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "3", |
||||
"r" : "0x6ea58ad111961b0405e59b425fad3f91d0f64a2b39ce582a8df343db9b5a8a85", |
||||
"s" : "0xcac83c8d95325558119b4c377d3a1c8ea2833fbf73e631c3abb55990493f4c9f", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
}, |
||||
{ |
||||
"data" : "0xfcfff16f", |
||||
"gasLimit" : "600000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "4", |
||||
"r" : "0xfd736923fc272b98e188d889be126405f92c5ad34de8083a7cc8f36ba3653ec7", |
||||
"s" : "0x0561eaeb3cf1a35c0521d394d3a0e8c3c63d6296f7fed7820e79b1c0f5d82347", |
||||
"to" : "6295ee1b4f6dd65047762f924ecd367c17eabf8f", |
||||
"v" : "27", |
||||
"value" : "66" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131200", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "03a8296196f16a58b2e388d8465a951ce5ad882f7e52c4835836dab3403ba5cb", |
||||
"mixHash" : "66ebaccb526172e0c15bf0f0d49e5cab2f99e1faecc97a4f83c140d6a89a6abb", |
||||
"nonce" : "118cc27434d22044", |
||||
"number" : "4", |
||||
"parentHash" : "f16f9ab4a947c95f2615dcb2e2d3a9b189447fa8fc0b25b3166ba79f213c3156", |
||||
"receiptTrie" : "79464d64b8751b75d7f8f7221ee009a0f2f8638738f7f486e3d08204d722d167", |
||||
"stateRoot" : "8c415b6de32b2b798df2ba589aed28d821fac5599ae5b59bae22bbfa8f5b2470", |
||||
"timestamp" : "1426516425", |
||||
"transactionsTrie" : "3e258d6859c27dbc6113a8ee96f9f42b3bbe33206c023378ddd8a265f73a9153", |
||||
"uncleHash" : "f70a81f70b6b4479364f98907208a144ce27a92098d3c05603c070e6cbf2248c" |
||||
}, |
||||
"rlp" : "0xf90657f901f9a0f16f9ab4a947c95f2615dcb2e2d3a9b189447fa8fc0b25b3166ba79f213c3156a0f70a81f70b6b4479364f98907208a144ce27a92098d3c05603c070e6cbf2248c948888f1f195afa192cfee860698584c030f4c9db1a08c415b6de32b2b798df2ba589aed28d821fac5599ae5b59bae22bbfa8f5b2470a03e258d6859c27dbc6113a8ee96f9f42b3bbe33206c023378ddd8a265f73a9153a079464d64b8751b75d7f8f7221ee009a0f2f8638738f7f486e3d08204d722d167b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302008004832fefd8825208845506e9c980a066ebaccb526172e0c15bf0f0d49e5cab2f99e1faecc97a4f83c140d6a89a6abb88118cc27434d22044f862f86005018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ba005081dd1c551eae43d22b85fa1d6373729af80193cf36342c7ee51267aab6342a0a10183c5bb8b958f81975db45b22d3db63d4a16f521f14b3a0db15a6a84d3b9df903f4f901f7a0de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3aa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d4934794a94f5374fce5edbc8e2a8697c15331677e6ebf0ba008a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000002832fefd880845506e9c980a0ecbb0956697074afbae16e9044b18f98b77ffe92f38e592de5d9fcfd194d04c58814b99f4b1089734bf901f7a0de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3aa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d4934794bcde5374fce5edbc8e2a8697c15331677e6ebf0ba008a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000002832fefd880845506e9cc80a097acda09e515fb70235586ef74ef24355519a3d4fd4b92d8ef200129c0c480898891b7cec43a4ec4b9", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "5", |
||||
"r" : "0x05081dd1c551eae43d22b85fa1d6373729af80193cf36342c7ee51267aab6342", |
||||
"s" : "0xa10183c5bb8b958f81975db45b22d3db63d4a16f521f14b3a0db15a6a84d3b9d", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "27", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
{ |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "5bb68c816539ee0a0b8e155ce7dc27e10ef4ecda04f349f80e537616ad489dab", |
||||
"mixHash" : "ecbb0956697074afbae16e9044b18f98b77ffe92f38e592de5d9fcfd194d04c5", |
||||
"nonce" : "14b99f4b1089734b", |
||||
"number" : "2", |
||||
"parentHash" : "de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3a", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "08a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0", |
||||
"timestamp" : "1426516425", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
{ |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "bcde5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "89f6e80528cc1314347cf9e0583a843446bf36c88589f8d699af2aa4b9a4fb23", |
||||
"mixHash" : "97acda09e515fb70235586ef74ef24355519a3d4fd4b92d8ef200129c0c48089", |
||||
"nonce" : "91b7cec43a4ec4b9", |
||||
"number" : "2", |
||||
"parentHash" : "de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3a", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "08a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0", |
||||
"timestamp" : "1426516428", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
} |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131136", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "abfbf437d354ee206272dd8f28a5d93158cef7a70d1023d90b89d3ed934bb1c6", |
||||
"mixHash" : "cfed54b55104734e287acd1c8661fea4ff612aff082304d6b074609369e15482", |
||||
"nonce" : "6e4b3f72b9f7b009", |
||||
"number" : "5", |
||||
"parentHash" : "03a8296196f16a58b2e388d8465a951ce5ad882f7e52c4835836dab3403ba5cb", |
||||
"receiptTrie" : "9f6a5a578143a26df4fbdc33f2eb6597fc9f121364195d635b544fb283b6724d", |
||||
"stateRoot" : "d2844de1f3cb8cb401fcf0f04b3a4ab4529b9920aac95e2d3ea907275911ab15", |
||||
"timestamp" : "1426516511", |
||||
"transactionsTrie" : "bbb48ccc1863db93f98f90099b0ae1c69f8be9cd5a59b5bff83569c281b9bdb1", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90261f901f9a003a8296196f16a58b2e388d8465a951ce5ad882f7e52c4835836dab3403ba5cba01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0d2844de1f3cb8cb401fcf0f04b3a4ab4529b9920aac95e2d3ea907275911ab15a0bbb48ccc1863db93f98f90099b0ae1c69f8be9cd5a59b5bff83569c281b9bdb1a09f6a5a578143a26df4fbdc33f2eb6597fc9f121364195d635b544fb283b6724db90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302004005832fefd8825208845506ea1f80a0cfed54b55104734e287acd1c8661fea4ff612aff082304d6b074609369e15482886e4b3f72b9f7b009f862f86006018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca096f49c323477467418d96886d5d512d81af905793bd5dbf5da7ad52b7e0663e1a0fbc41bd2130aaacdc29adb0bc38eb073853a09d1e9d1896bc98e10449b1e8efec0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "6", |
||||
"r" : "0x96f49c323477467418d96886d5d512d81af905793bd5dbf5da7ad52b7e0663e1", |
||||
"s" : "0xfbc41bd2130aaacdc29adb0bc38eb073853a09d1e9d1896bc98e10449b1e8efe", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "089317c114cc77a85a869d2e1c115490c2671ba0fe844f1c78a57e895d173787", |
||||
"mixHash" : "bc5b9020001e95f9124086da49f693e8c0546e5725ba52bc58c497a9910d8895", |
||||
"nonce" : "e889283ba72eed34", |
||||
"number" : "6", |
||||
"parentHash" : "abfbf437d354ee206272dd8f28a5d93158cef7a70d1023d90b89d3ed934bb1c6", |
||||
"receiptTrie" : "087619fd6ddc37e1e81b7d042094fc05f44bce508dac5920b83b17c0f81721e3", |
||||
"stateRoot" : "71e00cda637a504b42712bb5e47cc3515cdf6aff0c5ab357cc5e465fc6b3feb2", |
||||
"timestamp" : "1426516525", |
||||
"transactionsTrie" : "4146e8971e5b081a7736e8d150558fb0ab1a24d35b107fc54b2bfddf07267762", |
||||
"uncleHash" : "5db7762a1a66458327712cc18be8b03c8456a05eac89012f65ab349d6239b7ed" |
||||
}, |
||||
"rlp" : "0xf9045df901f9a0abfbf437d354ee206272dd8f28a5d93158cef7a70d1023d90b89d3ed934bb1c6a05db7762a1a66458327712cc18be8b03c8456a05eac89012f65ab349d6239b7ed948888f1f195afa192cfee860698584c030f4c9db1a071e00cda637a504b42712bb5e47cc3515cdf6aff0c5ab357cc5e465fc6b3feb2a04146e8971e5b081a7736e8d150558fb0ab1a24d35b107fc54b2bfddf07267762a0087619fd6ddc37e1e81b7d042094fc05f44bce508dac5920b83b17c0f81721e3b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000006832fefd8825208845506ea2d80a0bc5b9020001e95f9124086da49f693e8c0546e5725ba52bc58c497a9910d889588e889283ba72eed34f862f86007018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca0ad0ce2b315d174241c6897f9f913bafc06b2a16805d493b8c4c2f82ec2f110e9a00f9979742a9cabd3a0f118d4254dad111489ce1ac28b192f31876ed1254c507bf901faf901f7a0de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3aa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d4934794bcde5374fce5edbc8e2a8697c15331677e6ebf0ba008a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000002832fefd880845506ea2d80a0118033e030e1a0266946848bd905cdb6dfecd0f1d37ffcbac1e6e5a1663ffb61883dec220365b89bf7", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "7", |
||||
"r" : "0xad0ce2b315d174241c6897f9f913bafc06b2a16805d493b8c4c2f82ec2f110e9", |
||||
"s" : "0x0f9979742a9cabd3a0f118d4254dad111489ce1ac28b192f31876ed1254c507b", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
{ |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "bcde5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "7bfddd1a3f5e71e2035e0921757bdadcbdaf38fb3903fd8d1ac420cf60f89931", |
||||
"mixHash" : "118033e030e1a0266946848bd905cdb6dfecd0f1d37ffcbac1e6e5a1663ffb61", |
||||
"nonce" : "3dec220365b89bf7", |
||||
"number" : "2", |
||||
"parentHash" : "de85dfb0a34735ea88fbc00820b27136eff3cb6f89ca3672ab7a304553815d3a", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "08a7a2d608a1d0ee45299a6b004e531283ca002a44f5a116df2ec65f62afd9c0", |
||||
"timestamp" : "1426516525", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
} |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "f3c13a2f47bdfd8cede0f9fdb8bfb3d3bffbd14097c6cd8b7d0291ecc5dbf9ba", |
||||
"mixHash" : "60b3244ada5f9e221f6c4b344d1b94eebb80c96464929256558dc8468a974108", |
||||
"nonce" : "c5f35ac93ba1168b", |
||||
"number" : "7", |
||||
"parentHash" : "089317c114cc77a85a869d2e1c115490c2671ba0fe844f1c78a57e895d173787", |
||||
"receiptTrie" : "47b1dac31c10d5c8806001f701dba3f5d6c75d8addf4a34e9761287c2e9a3996", |
||||
"stateRoot" : "bea94051d522607dc4a4771e55525c8c855f868fdc5c9634d07a0c14a27270ba", |
||||
"timestamp" : "1426516549", |
||||
"transactionsTrie" : "de9a94acaa7b7e723e5a138cdd73fe867ca5984d36a3c6feda9ba27ee1cf991d", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90261f901f9a0089317c114cc77a85a869d2e1c115490c2671ba0fe844f1c78a57e895d173787a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0bea94051d522607dc4a4771e55525c8c855f868fdc5c9634d07a0c14a27270baa0de9a94acaa7b7e723e5a138cdd73fe867ca5984d36a3c6feda9ba27ee1cf991da047b1dac31c10d5c8806001f701dba3f5d6c75d8addf4a34e9761287c2e9a3996b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000007832fefd8825208845506ea4580a060b3244ada5f9e221f6c4b344d1b94eebb80c96464929256558dc8468a97410888c5f35ac93ba1168bf862f86008018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca043fe6e78b7a0a525690a666a57973bc35f9ca6aa8d3040aa83ff29604c59e673a083def3aa2c735cefa0d25eb64e54818a48e41e8d68ff566223f4cd4c2dadacd1c0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "8", |
||||
"r" : "0x43fe6e78b7a0a525690a666a57973bc35f9ca6aa8d3040aa83ff29604c59e673", |
||||
"s" : "0x83def3aa2c735cefa0d25eb64e54818a48e41e8d68ff566223f4cd4c2dadacd1", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "bef6a9f9106d2a39382d7ed1500a5baf131300bcfcab104dcc25623049eee150", |
||||
"mixHash" : "e5e5defb837c38de1cd935b8a03f795e5889e3cbec72f5a9c727f5f46e683a78", |
||||
"nonce" : "11dd92bd52a15b35", |
||||
"number" : "8", |
||||
"parentHash" : "f3c13a2f47bdfd8cede0f9fdb8bfb3d3bffbd14097c6cd8b7d0291ecc5dbf9ba", |
||||
"receiptTrie" : "abbff71bc54d8263ef0865dc0226c8b846a4e752746192ef0dc687277aa3dedb", |
||||
"stateRoot" : "295eaa1b78b79b552f2af30df99fb17ae97bfe505b729108ed05990405275df6", |
||||
"timestamp" : "1426516649", |
||||
"transactionsTrie" : "187973ec3074918e11f92694fd172b61ec8a2bdcccc65e1fe39f5642082561e6", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90261f901f9a0f3c13a2f47bdfd8cede0f9fdb8bfb3d3bffbd14097c6cd8b7d0291ecc5dbf9baa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0295eaa1b78b79b552f2af30df99fb17ae97bfe505b729108ed05990405275df6a0187973ec3074918e11f92694fd172b61ec8a2bdcccc65e1fe39f5642082561e6a0abbff71bc54d8263ef0865dc0226c8b846a4e752746192ef0dc687277aa3dedbb90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000008832fefd8825208845506eaa980a0e5e5defb837c38de1cd935b8a03f795e5889e3cbec72f5a9c727f5f46e683a788811dd92bd52a15b35f862f86009018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca0a55ae62ce6c6776354badb7c9ebc2da493378bb35e366821ce814467a554ffdca01facc52277c0266ce9095c1304f81493dcfedac3262045ec38064044b5127b45c0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "9", |
||||
"r" : "0xa55ae62ce6c6776354badb7c9ebc2da493378bb35e366821ce814467a554ffdc", |
||||
"s" : "0x1facc52277c0266ce9095c1304f81493dcfedac3262045ec38064044b5127b45", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
}, |
||||
{ |
||||
"blockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "21000", |
||||
"hash" : "d2e1575105fd2272914d77355b8dab5afbdde4b012abd849e8b32111be498b0d", |
||||
"mixHash" : "492adab4d7f498e5f916d1cfb8944c9c21137248986f129c0cc8eea25604ad08", |
||||
"nonce" : "725f511c383beb8d", |
||||
"number" : "9", |
||||
"parentHash" : "bef6a9f9106d2a39382d7ed1500a5baf131300bcfcab104dcc25623049eee150", |
||||
"receiptTrie" : "e30b2e6130e22e8b28caa1f762c60db82d155c2346a0b5016e44473509114be6", |
||||
"stateRoot" : "ae35bd410a855772fb2cbff7b02c0130b3d4a6dd42311115d619eab7f91ddcdb", |
||||
"timestamp" : "1426516669", |
||||
"transactionsTrie" : "d274c40f667109371313de7eff83f5438017bd994285151d5d26aa0f8bb2e00b", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"rlp" : "0xf90261f901f9a0bef6a9f9106d2a39382d7ed1500a5baf131300bcfcab104dcc25623049eee150a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0ae35bd410a855772fb2cbff7b02c0130b3d4a6dd42311115d619eab7f91ddcdba0d274c40f667109371313de7eff83f5438017bd994285151d5d26aa0f8bb2e00ba0e30b2e6130e22e8b28caa1f762c60db82d155c2346a0b5016e44473509114be6b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000009832fefd8825208845506eabd80a0492adab4d7f498e5f916d1cfb8944c9c21137248986f129c0cc8eea25604ad0888725f511c383beb8df862f8600a018304cb2f94095e7baea6a6c7c4c2dfeb977efac326af552d870a801ca06db8b95f5da4a5cd26022c2cfac58a98aedcdd8f38fa909e8ec4a1e18f609cd4a09667b2b16361e757ff94dd841e94403249b4cedac3542d73be45098b39ae60ecc0", |
||||
"transactions" : [ |
||||
{ |
||||
"data" : "0x", |
||||
"gasLimit" : "314159", |
||||
"gasPrice" : "1", |
||||
"nonce" : "10", |
||||
"r" : "0x6db8b95f5da4a5cd26022c2cfac58a98aedcdd8f38fa909e8ec4a1e18f609cd4", |
||||
"s" : "0x9667b2b16361e757ff94dd841e94403249b4cedac3542d73be45098b39ae60ec", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"v" : "28", |
||||
"value" : "10" |
||||
} |
||||
], |
||||
"uncleHeaders" : [ |
||||
] |
||||
} |
||||
], |
||||
"genesisBlockHeader" : { |
||||
"bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"coinbase" : "8888f1f195afa192cfee860698584c030f4c9db1", |
||||
"difficulty" : "131072", |
||||
"extraData" : "0x42", |
||||
"gasLimit" : "3141592", |
||||
"gasUsed" : "0", |
||||
"hash" : "e9227484578ae675987de29dcdc2d06c383dbdc8d7c4810a2b406974e78c5438", |
||||
"mixHash" : "5ddd6dcf4369d8ad1a40e5d822bfe49d398b94af629945187f4f54276e8017e5", |
||||
"nonce" : "8f4166db33176041", |
||||
"number" : "0", |
||||
"parentHash" : "0000000000000000000000000000000000000000000000000000000000000000", |
||||
"receiptTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"stateRoot" : "e1a3750b19ae018e0179d9e5f2ab65af3afe10b15e1754f85f8324b4ba38fe9f", |
||||
"timestamp" : "1422494849", |
||||
"transactionsTrie" : "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", |
||||
"uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" |
||||
}, |
||||
"postState" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "90", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : { |
||||
"balance" : "100066", |
||||
"code" : "0x60003560e060020a9004806343d726d61461004257806391b7f5ed14610050578063d686f9ee14610061578063f5bade661461006f578063fcfff16f1461008057005b61004a6101de565b60006000f35b61005b6004356100bf565b60006000f35b610069610304565b60006000f35b61007a60043561008e565b60006000f35b6100886100f0565b60006000f35b600054600160a060020a031633600160a060020a031614156100af576100b4565b6100bc565b806001819055505b50565b600054600160a060020a031633600160a060020a031614156100e0576100e5565b6100ed565b806002819055505b50565b600054600160a060020a031633600160a060020a031614806101255750600354600160a060020a031633600160a060020a0316145b61012e57610161565b60016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a16101dc565b60045460011480610173575060015434105b6101b85760016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a142600581905550336003819055506101db565b33600160a060020a03166000346000600060006000848787f16101d757005b5050505b5b565b60006004546000146101ef576101f4565b610301565b600054600160a060020a031633600160a060020a031614801561022c5750600054600160a060020a0316600354600160a060020a0316145b61023557610242565b6000600481905550610301565b600354600160a060020a031633600160a060020a03161461026257610300565b600554420360025402905060015481116102c757600354600160a060020a0316600082600154036000600060006000848787f161029b57005b505050600054600160a060020a03166000826000600060006000848787f16102bf57005b5050506102ee565b600054600160a060020a031660006001546000600060006000848787f16102ea57005b5050505b60006004819055506000546003819055505b5b50565b6000600054600160a060020a031633600160a060020a031614156103275761032c565b61037e565b600554420360025402905060015481116103455761037d565b600054600160a060020a031660006001546000600060006000848787f161036857005b50505060006004819055506000546003819055505b5b5056", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x01" : "0x42", |
||||
"0x02" : "0x23", |
||||
"0x03" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x04" : "0x01", |
||||
"0x05" : "0x54c98c81" |
||||
} |
||||
}, |
||||
"8888f1f195afa192cfee860698584c030f4c9db1" : { |
||||
"balance" : "13640625000000597753", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1125009999999302091", |
||||
"code" : "0x", |
||||
"nonce" : "11", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"bcde5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1875000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"ec0e71ad0a90ffe1909d27dac207f7680abba42d" : { |
||||
"balance" : "100000", |
||||
"code" : "0x60003560e060020a9004806343d726d61461004257806391b7f5ed14610050578063d686f9ee14610061578063f5bade661461006f578063fcfff16f1461008057005b61004a6101de565b60006000f35b61005b6004356100bf565b60006000f35b610069610304565b60006000f35b61007a60043561008e565b60006000f35b6100886100f0565b60006000f35b600054600160a060020a031633600160a060020a031614156100af576100b4565b6100bc565b806001819055505b50565b600054600160a060020a031633600160a060020a031614156100e0576100e5565b6100ed565b806002819055505b50565b600054600160a060020a031633600160a060020a031614806101255750600354600160a060020a031633600160a060020a0316145b61012e57610161565b60016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a16101dc565b60045460011480610173575060015434105b6101b85760016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a142600581905550336003819055506101db565b33600160a060020a03166000346000600060006000848787f16101d757005b5050505b5b565b60006004546000146101ef576101f4565b610301565b600054600160a060020a031633600160a060020a031614801561022c5750600054600160a060020a0316600354600160a060020a0316145b61023557610242565b6000600481905550610301565b600354600160a060020a031633600160a060020a03161461026257610300565b600554420360025402905060015481116102c757600354600160a060020a0316600082600154036000600060006000848787f161029b57005b505050600054600160a060020a03166000826000600060006000848787f16102bf57005b5050506102ee565b600054600160a060020a031660006001546000600060006000848787f16102ea57005b5050505b60006004819055506000546003819055505b5b50565b6000600054600160a060020a031633600160a060020a031614156103275761032c565b61037e565b600554420360025402905060015481116103455761037d565b600054600160a060020a031660006001546000600060006000848787f161036857005b50505060006004819055506000546003819055505b5b5056", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x01" : "0x42", |
||||
"0x02" : "0x23", |
||||
"0x03" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x05" : "0x5506e9b7" |
||||
} |
||||
} |
||||
}, |
||||
"pre" : { |
||||
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : { |
||||
"balance" : "100000", |
||||
"code" : "0x60003560e060020a9004806343d726d61461004257806391b7f5ed14610050578063d686f9ee14610061578063f5bade661461006f578063fcfff16f1461008057005b61004a6101de565b60006000f35b61005b6004356100bf565b60006000f35b610069610304565b60006000f35b61007a60043561008e565b60006000f35b6100886100f0565b60006000f35b600054600160a060020a031633600160a060020a031614156100af576100b4565b6100bc565b806001819055505b50565b600054600160a060020a031633600160a060020a031614156100e0576100e5565b6100ed565b806002819055505b50565b600054600160a060020a031633600160a060020a031614806101255750600354600160a060020a031633600160a060020a0316145b61012e57610161565b60016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a16101dc565b60045460011480610173575060015434105b6101b85760016004819055507f59ebeb90bc63057b6515673c3ecf9438e5058bca0f92585014eced636878c9a560006000a142600581905550336003819055506101db565b33600160a060020a03166000346000600060006000848787f16101d757005b5050505b5b565b60006004546000146101ef576101f4565b610301565b600054600160a060020a031633600160a060020a031614801561022c5750600054600160a060020a0316600354600160a060020a0316145b61023557610242565b6000600481905550610301565b600354600160a060020a031633600160a060020a03161461026257610300565b600554420360025402905060015481116102c757600354600160a060020a0316600082600154036000600060006000848787f161029b57005b505050600054600160a060020a03166000826000600060006000848787f16102bf57005b5050506102ee565b600054600160a060020a031660006001546000600060006000848787f16102ea57005b5050505b60006004819055506000546003819055505b5b50565b6000600054600160a060020a031633600160a060020a031614156103275761032c565b61037e565b600554420360025402905060015481116103455761037d565b600054600160a060020a031660006001546000600060006000848787f161036857005b50505060006004819055506000546003819055505b5b5056", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x01" : "0x42", |
||||
"0x02" : "0x23", |
||||
"0x03" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", |
||||
"0x05" : "0x54c98c81" |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "10000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x42414040384145413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41186", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858860", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "95dc37aa6c9d9530584d4df89fb5cac892380d98bbeeb9bfbca158f06cdc75a0", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x42414040384145413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x414341414243421a2055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41170", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858876", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "0fbb14a00e6b0a659d75598cbd1dbcfa6cfb9abaf3c9584f49f438baa9d1b684", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x414341414243421a2055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x45414240454145450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x33f9c5112d99ee82a4d565662acf37cc9d0ae1ce" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41156", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858890", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "be6da064f79684ac60494a46f2aa2e370502a750a01a5f8a3a87e8ae20d2378b", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x45414240454145450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41421942450855678a044455", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x02" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41136", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858910", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9324d0729794da968cacf9da923ee21d1122dd28449c2964ce6f3de9f3df4eb9", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41421942450855678a044455", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4544424140204555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" : "0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41183", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858863", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "3286cec1eb6d2413d2554b3c3ccf31fc314fe0f8ec18e827203c413dc7cd624c", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4544424140204555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"19fce28896ccf741526ab2b315679be64e8570e8" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "10592", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999889454", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "4bb7b2c32daf12a48ab214c74b5cf1c8634e40b6273e17a62555d0e2b86bd25c", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x424441444141454208ff65a0090272", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44404144434542425220356a3b1a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21193", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878853", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9e25620dd9039c8044b101b6d5b5e40c8c2a7c9cf347ca4cbae7e9898dd004a1", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44404144434542425220356a3b1a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41444541084455", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x051d6a3cd647" : "0x03bbb5cf3502" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41132", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858914", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "7363d4d46695459db58a5980a05216d2688f008024035cbc15cf94d7a9436b38", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41444541084455", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4434404341424140203855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x0b" : "0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41207", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858839", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "25ddab907c02d9e002e8bfff0a27850b7f46ddd23de112136634d63802b2d7e3", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4434404341424140203855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x434242445b41310755", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0x01" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41150", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858896", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "fb9ed88e1653c4b51474b246e3b8a02668a6736d9d6ba6a10f224353cb8e31f2", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x434242445b41310755", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4542", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21118", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878928", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "7bf406e499739a794f51923be7a9504443e4a9a34b34e5127f350d66865f8451", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4542", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x434241314441434293170955", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xd9250a4f8c" : "0x01" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41162", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858884", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "f70420ecb168239279a2ff60e0c85aa7b7bdd5dea046627c123f8965159fda04", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x434241314441434293170955", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4542074343424141315155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41165", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858881", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "876d77beb54ba85ddf56589c9947d67ceaa9efc383795013bfb3720ad99a9bbe", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4542074343424141315155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x434542454244402055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41185", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858861", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "de2b8601d7a0239d44f82d864b9be01cf5515a2a2ea35c5d08860270706075f9", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x434542454244402055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4445413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41140", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858906", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "04fdf576eb44698e2f838c29d9bc0d0de446d98dce824d5d23b62098e233a840", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4445413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43413160439155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0x2e" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41144", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858902", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "173e6538b20664191b0c50b6f109291642fd91245f2bb0f4e9c2ae4ada26c90d", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43413160439155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43767855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21119", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878927", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "4cf7506d1dea424f139b33df9f98b63319321abdc35573704330cdaabd604e80", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43767855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x45104145424045406a1319578a8059", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "908ffa2ff55984d439153dd073b1cefe672f2c793d11f79d90899190b3fe3b90", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x45104145424045406a1319578a8059", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x42434145410844455055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x051d6a3cd647" : "0x19fce28896ccf741526ab2b315679be64e8570e7" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41138", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858908", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "5c4dd6f4b5275c7a901bbf0109b8320691e642e4d199a3b66a45a720a6211eac", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x42434145410844455055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4242434444454443525520307555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" : "0x051d6a3cd647" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41171", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858875", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "3a637ce7ca3e580b4456f8508a8c38a150b2ca2490e0c1307791698b011f0a40", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4242434444454443525520307555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x45414344434244413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0x051d6a3cd647" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41150", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858896", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "b5aeeeeb6122543c3148c6a1642160daf324dc501ba38cb0c1c15472571d804b", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x45414344434244413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4245428445134240845052f27a8a55", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "ccaac91ac49cb97ebb0b0092185ca2bf993ab6df2dff8e4126417e020b537c2f", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4245428445134240845052f27a8a55", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41434440434140308e97a4086645", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "cb08f277e6c4264fe2fe8b98d29be73a91b0d14a10f0a7265969f8ed359de1e9", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41434440434140308e97a4086645", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44420b4442432055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" : "0x051d6a3cd647" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41168", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858878", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "740e980fa1c72637521f848a07aeb5d66e7ec3c59b94b9e3b948d10267169c5b", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44420b4442432055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x42424042434445413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41168", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858878", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "35b93c1ab2e2f784d668fd0eb3801da7f4c6331980043f8ed3a7931124d8855d", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x42424042434445413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41444442444441450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x03bbb5cf3502" : "0x051d6a3cd647" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41138", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858908", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "ee8e6e8cac9bc090f6dfc61dd8f81a849a5a71a997e2cbe6ad7c85025370a888", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41444442444441450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x45404141314155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x945304eb96065b2a98b57a48a06ae28d285a71b5" : "0x2e" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41162", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858884", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "77df2a740c2a760c9f9fb197005050481ef37f677ebff3cb66bf66913f15a0f6", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x45404141314155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,80 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
{ |
||||
"address" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"bloom" : "00000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000004000000000000000000000000000000000000", |
||||
"data" : "0x", |
||||
"topics" : [ |
||||
"0000000000000000000000000000000000000000000000000000051d6a3cd647" |
||||
] |
||||
} |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4445434244444044a158205855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x0b" : "0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41941", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858105", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "0678e558c0243528024322e646e30991027a594204d1d89d35049cf93b4a74b7", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4445434244444044a158205855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,82 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
{ |
||||
"address" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"bloom" : "00000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000020000000000000000000800000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000200000000000000040000000000000000000000000000020000000000040000000000000000000000020000010000000000000000000000000", |
||||
"data" : "0x00", |
||||
"topics" : [ |
||||
"0000000000000000000000000000000000000000000000000000000000000000", |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", |
||||
"000000000000000000000000945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"0000000000000000000000000000000000000000000000000000000000000000" |
||||
] |
||||
} |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x454143414543424131a4", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "23039", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999877007", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "ebc5109105b629b75811290112a64b8e4748887e82af62ab3bdf88e33b4834d4", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x454143414543424131a4", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0xf143424141", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "75c6e8cb54ed632b2f2f4b858c00b0e85595f11ba6eff7c4b1ecf03e9ced020c", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0xf143424141", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x30424543074242413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0x01" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41153", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858893", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "985613a688952db98721dc3f6c83daa9805abf1a834edd3554ccba008c88178f", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x30424543074242413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44444243204555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" : "0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41163", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858883", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "f9daab160da6388b336998cc5b6d75c465725f00a6a0f8a9cab1ea3d1257f4cd", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44444243204555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41404244444145085955", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0x03bbb5cf3502" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41156", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858890", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "777cde5f3f0c6a570929f491761fcdfe29ddd0b462db861b71f11d360c9cdcd9", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41404244444145085955", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x434242404244444005db75", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "e90bfdd25f3cee5dcb6ba0411d0926250a04a19613a048e0d4b1133dc8ea4865", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x434242404244444005db75", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44404243424142915a2055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xbc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "350556", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999549490", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "536740e0d4cd485ee0b740c8c69a63fb034c60279e38980b25f399e562310bca", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44404243424142915a2055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x414542084255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x01" : "0x19fce28896ccf741526ab2b315679be64e8570e8" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41130", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858916", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "b2dc128feea95fa987aa090c16f5a0f50722601942c9861e790a8c242c5d8fb7", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x414542084255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x42444143404341413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x2e" : "0x945304eb96065b2a98b57a48a06ae28d285a71b5" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41168", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858878", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "e86a5c22ce15e4a7efb45f26719fc58d7f6dd219bff82c164357ad4380e36cbd", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x42444143404341413155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44444131444055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x" : "0x2e" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41162", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858884", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "00abc60d5df4681fcccc44d024513cd0209d56e8ef7a08e3ca4189d506c697f7", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44444131444055", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4241424540444145084555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" : "0x03bbb5cf3502" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41158", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858888", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "088dada15ddaf80bb3aade100de70bbe8b10e0bdc7c65e79693a406385fc2619", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4241424540444145084555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4142", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21118", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878928", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "7397124f53f97e2feb584a04b7216775fcfe101d1460853b392ae38c671b4793", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4142", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x424255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x01" : "0x01" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41118", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858928", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "6072885a90efa3040ae08ac771d96b6ba10a975d5c2ed271cf675b268392d93a", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x424255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43414043454445450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0x04180354e5f1" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41156", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858890", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "a4c663b84425111046f928d3bff841b2ef61a39cf3b27a9a305a3a207b93a26f", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43414043454445450855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43454545085a55", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "26132", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999873914", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9adeffd1dc5c9481f9ae5efb6960d633848bfb4b00bc7f279d56ea45f2a2298f", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43454545085a55", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x440a454241414242ff0b667a089255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "3a472f53b797070aad24228a443c51cc180bce5454c29d507d1da5b4f1fdd4a0", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x440a454241414242ff0b667a089255", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"0000000000000000000000000000000000000000" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "10589", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999889457", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "0455f96a64406f18634b9f7f441fda3b1dd6ab9aec9deed10513ce053e5b405c", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4342424343425b4495fff04285609955", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4344434041424243f27a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "30191", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999869855", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "316ebf2da7952e941d919dbe17a6d8b18d584d2c7a9c5ee605e411080ddc6955", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4344434041424243f27a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4343404443434144133642f2", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21196", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878850", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9b6fbe6b2dac6d60bf796db6b1a46cdaba03e31363f7caa6bab39fb0b5b09d49", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4343404443434144133642f2", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43424244457943455409635939", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21127", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878919", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "68ffa9dca5523569e248a9eea9d426c5a155f3a1e942187d6487ab3b5c8e949e", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43424244457943455409635939", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4343424344444242f26d69", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "30174", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999869872", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "a14193c10ce146ed737b1038c1daf6e757946725a6ec488bee774aa62eaa7d24", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4343424344444242f26d69", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x4044424240696e41", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "b9bb1f434df37741f8b1ba85d84a46f95ce1a46f1b4232031f3f975afcf56677", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x4044424240696e41", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x44404340434136437b0703709768f36855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21169", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878877", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9dd769eca7a095a83fedfecb3f82d2f0b400408daa9f7e1be289eb4d0234003c", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x44404340434136437b0703709768f36855", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,72 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x454555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "41118", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999858928", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "9f71ffb0ecc7f579f2e35ed2a6c8549d4eaf8cf5d8ea33616b420b38dca392ea", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x454555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x434155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "26118", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999873928", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "80031762584d8f082da0ae0e4fe2898198897f08d0a3499a7c6099d376ea389a", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x434155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x41414240444045459f03168b0a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "75c23d022f15f7b96d133d1a02cb9a1a3034c508d71083acb1a7c2f8955691a0", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x41414240444045459f03168b0a", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x404142444440414333", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "b299c1a5eb011d6af348176dc47ce92efcff391fbf6fcd63e85ee44c9487017e", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x404142444440414333", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x43054245404041", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "03a7b4b9d578c24e38886da073bf4201175c17f0fc169b178577f24747184410", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x43054245404041", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x45454041444344330a78066e6da197ff", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "21221", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999878825", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "adae6101cc3684325c86df084771e077a5f7bfd2ff635af9705037b48be86a01", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x45454041444344330a78066e6da197ff", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x404340404541429c148d65713b", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "4f7be05cf9c4e851df0ce5c355397f969057c1d3d3071ce5814340de0ea9da7a", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x404340404541429c148d65713b", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,71 @@ |
||||
{ |
||||
"randomStatetest" : { |
||||
"env" : { |
||||
"currentCoinbase" : "945304eb96065b2a98b57a48a06ae28d285a71b5", |
||||
"currentDifficulty" : "5623894562375", |
||||
"currentGasLimit" : "115792089237316195423570985008687907853269984665640564039457584007913129639935", |
||||
"currentNumber" : "0", |
||||
"currentTimestamp" : "1", |
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" |
||||
}, |
||||
"logs" : [ |
||||
], |
||||
"out" : "0x", |
||||
"post" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000100000", |
||||
"code" : "0x84430343434155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "400046", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "999999999999500000", |
||||
"code" : "0x", |
||||
"nonce" : "1", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"postStateRoot" : "81fb1fea00549813c957094404af329ce0c51a2d1e6fdd6bf6c923251bd208fa", |
||||
"pre" : { |
||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x84430343434155", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
||||
"balance" : "46", |
||||
"code" : "0x6000355415600957005b60203560003555", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
}, |
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { |
||||
"balance" : "1000000000000000000", |
||||
"code" : "0x", |
||||
"nonce" : "0", |
||||
"storage" : { |
||||
} |
||||
} |
||||
}, |
||||
"transaction" : { |
||||
"data" : "0x42", |
||||
"gasLimit" : "400000", |
||||
"gasPrice" : "1", |
||||
"nonce" : "0", |
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", |
||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87", |
||||
"value" : "100000" |
||||
} |
||||
} |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue