1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
package main
import (
"bytes"
"fmt"
"github.com/ava-labs/coreth"
"github.com/ava-labs/coreth/core"
"github.com/ava-labs/coreth/core/types"
"github.com/ava-labs/coreth/eth"
"github.com/ava-labs/coreth/params"
"github.com/ava-labs/go-ethereum/common"
"github.com/ava-labs/go-ethereum/common/hexutil"
"github.com/ava-labs/go-ethereum/crypto"
"github.com/ava-labs/go-ethereum/rlp"
"math/big"
)
func checkError(err error) {
if err != nil {
panic(err)
}
}
func main() {
// configure the chain
config := eth.DefaultConfig
config.ManualCanonical = true
chainConfig := ¶ms.ChainConfig{
ChainID: big.NewInt(1),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: big.NewInt(0),
DAOForkSupport: true,
EIP150Block: big.NewInt(0),
EIP150Hash: common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"),
EIP155Block: big.NewInt(0),
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
IstanbulBlock: nil,
Ethash: nil,
}
// configure the genesis block
genBalance := big.NewInt(100000000000000000)
hk, _ := crypto.HexToECDSA(
"abd71b35d559563fea757f0f5edbde286fb8c043105b15abb7cd57189306d7d1")
genKey := coreth.NewKeyFromECDSA(hk)
config.Genesis = &core.Genesis{
Config: chainConfig,
Nonce: 0,
Number: 0,
ExtraData: hexutil.MustDecode("0x00"),
GasLimit: 100000000,
Difficulty: big.NewInt(0),
Alloc: core.GenesisAlloc{genKey.Address: {Balance: genBalance}},
}
// grab the control of block generation and disable auto uncle
config.Miner.ManualMining = true
config.Miner.DisableUncle = true
chain := coreth.NewETHChain(&config, nil, nil, nil)
buff := new(bytes.Buffer)
blk := chain.GetGenesisBlock()
err := blk.EncodeRLPEth(buff)
buff.WriteString("somesuffix")
checkError(err)
var blk2 *types.Block
blk2 = new(types.Block)
fmt.Println(buff.Len())
fmt.Println(common.ToHex(buff.Bytes()))
err = rlp.Decode(buff, blk2)
fmt.Println(buff.Len())
checkError(err)
buff.Reset()
err = blk2.EncodeRLPEth(buff)
checkError(err)
fmt.Println(buff.Len())
fmt.Println(common.ToHex(buff.Bytes()))
err = rlp.Decode(buff, blk2)
fmt.Println(buff.Len())
checkError(err)
buff.Reset()
err = blk2.EncodeRLP(buff)
checkError(err)
buff.WriteString("somesuffix")
fmt.Println(buff.Len())
fmt.Println(common.ToHex(buff.Bytes()))
err = rlp.Decode(buff, blk2)
fmt.Println(buff.Len())
checkError(err)
buff.Reset()
err = blk2.EncodeRLP(buff)
checkError(err)
fmt.Println(buff.Len())
fmt.Println(common.ToHex(buff.Bytes()))
err = rlp.Decode(buff, blk2)
fmt.Println(buff.Len())
checkError(err)
buff.Reset()
extra, err := rlp.EncodeToBytes("test extra data")
blk2.SetExtraData(extra)
err = blk2.EncodeRLPTest(buff, 0xffffffff)
checkError(err)
buff.WriteString("somesuffix")
fmt.Println(buff.Len())
fmt.Println(blk2.Hash().Hex())
err = rlp.Decode(buff, blk2)
checkError(err)
fmt.Println(buff.Len(), (string)(blk2.ExtraData()), blk2.Hash().Hex())
decoded1 := new(string)
err = rlp.DecodeBytes(blk2.ExtraData(), decoded1)
checkError(err)
fmt.Println(buff.Len(), decoded1)
fmt.Println(common.ToHex(buff.Bytes()))
buff.Reset()
type NestedData struct {
A uint16
B uint16
S string
}
type MyData struct {
X uint32
Y uint32
Msg string
Inner NestedData
}
extra, err = rlp.EncodeToBytes(MyData{
X: 4200, Y: 4300, Msg: "hello", Inner: NestedData{A: 1, B: 2, S: "world"},
})
checkError(err)
blk2.SetExtraData(extra)
err = blk2.EncodeRLPTest(buff, 0xfffffffe)
checkError(err)
fmt.Println(blk2.Hash().Hex())
err = rlp.Decode(buff, blk2)
checkError(err)
decoded2 := new(MyData)
err = rlp.DecodeBytes(blk2.ExtraData(), decoded2)
checkError(err)
fmt.Println(buff.Len(), decoded2, blk2.Hash().Hex())
buff.Reset()
}
|