-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
294 lines (276 loc) · 7.54 KB
/
main.go
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"time"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/consensus/beacon"
"github.com/ethereum/go-ethereum/consensus/ethash"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/params"
"github.com/holiman/uint256"
"github.com/urfave/cli/v2"
)
func main() {
app := &cli.App{
Name: "graphqltestgen",
Usage: "Extend a blockchain for graphql testing",
Commands: []*cli.Command{
{
Name: "head",
Usage: "validate chain and print the current header",
Action: func(c *cli.Context) error {
head(c)
return nil
},
},
{
Name: "fill",
Usage: "fill response for a graphql query",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "bin",
Aliases: []string{"b"},
Value: "geth",
Usage: "path to geth binary",
},
&cli.StringFlag{
Name: "request",
Aliases: []string{"r"},
Value: "request.gql",
Usage: "path to request file",
},
&cli.StringFlag{
Name: "response",
Aliases: []string{"s"},
Value: "response.gql",
Usage: "path to response file",
},
&cli.IntFlag{
Name: "verbosity",
Aliases: []string{"v"},
Value: 3,
Usage: "verbosity of geth",
},
},
Action: func(c *cli.Context) error {
return fill(c)
},
},
},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "genesis",
Aliases: []string{"g"},
Value: "genesis.json",
Usage: "path to genesis file",
},
&cli.StringFlag{
Name: "chain",
Aliases: []string{"c"},
Value: "chain.rlp",
Usage: "path to chain file",
},
&cli.StringFlag{
Name: "output",
Aliases: []string{"o"},
Value: "newchain.rlp",
Usage: "path to output file",
},
},
Action: func(c *cli.Context) error {
run(c)
return nil
},
}
if err := app.Run(os.Args); err != nil {
utils.Fatalf("error: %v\n", err)
}
}
type stack struct {
node *node.Node
db ethdb.Database
chain *core.BlockChain
}
func (n *stack) Stop() {
n.node.Close()
n.db.Close()
}
func run(ctx *cli.Context) {
stack, err := importChain(ctx.String("genesis"), ctx.String("chain"))
if err != nil {
utils.Fatalf("error importing chain: %v\n", err)
}
defer stack.Stop()
chain := stack.chain
blocks, err := generateCancunBlocks(chain, stack.db)
if err != nil {
utils.Fatalf("error generating blocks: %v\n", err)
}
num, err := chain.InsertChain(blocks)
if err != nil {
utils.Fatalf("error: %v\n", err)
}
head := chain.CurrentHeader()
ser, err := json.MarshalIndent(head, "", " ")
if err != nil {
utils.Fatalf("error: %v\n", err)
}
fmt.Printf("Inserted %d blocks. New head is:\n%s\n", num, ser)
// Write to file.
if err := utils.ExportChain(chain, ctx.String("output")); err != nil {
utils.Fatalf("error exporting chain: %v\n", err)
}
}
func head(ctx *cli.Context) {
stack, err := importChain(ctx.String("genesis"), ctx.String("chain"))
if err != nil {
utils.Fatalf("error importing chain: %v\n", err)
}
defer stack.Stop()
head := stack.chain.CurrentHeader()
if head == nil {
utils.Fatalf("error: head is nil\n")
}
ser, err := json.MarshalIndent(head, "", " ")
if err != nil {
utils.Fatalf("error: %v\n", err)
}
fmt.Printf("%s\n", ser)
}
func importChain(genesisPath, chainPath string) (*stack, error) {
node, err := node.New(&node.Config{})
if err != nil {
return nil, fmt.Errorf("could not create node: %v", err)
}
chainDb, err := node.OpenDatabaseWithFreezer("chaindata", 0, 0, "chaindata", "", false)
if err != nil {
return nil, fmt.Errorf("could not open database: %v", err)
}
engine := beacon.New(ethash.NewFaker())
gspec, err := readGenesis(genesisPath)
if err != nil {
return nil, fmt.Errorf("invalid genesis file: %v", err)
}
chain, err := core.NewBlockChain(chainDb, &core.CacheConfig{TrieDirtyDisabled: true}, gspec, nil, engine, vm.Config{}, nil, nil)
if err != nil {
return nil, fmt.Errorf("could not create blockchain: %v", err)
}
if err := utils.ImportChain(chain, chainPath); err != nil {
return nil, fmt.Errorf("could not import chain: %v", err)
}
return &stack{node: node, db: chainDb, chain: chain}, nil
}
func generateCancunBlocks(chain *core.BlockChain, db ethdb.Database) ([]*types.Block, error) {
var (
config = chain.Config()
key, _ = crypto.HexToECDSA("45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8")
address = crypto.PubkeyToAddress(key.PublicKey)
dest = common.HexToAddress("0x6295ee1b4f6dd65047762f924ecd367c17eabf8f")
//coinbase = common.HexToAddress("0x8888f1f195afa192cfee860698584c030f4c9db1")
signer = types.NewCancunSigner(config.ChainID)
//dad = common.HexToAddress("0x0000000000000000000000000000000000000dad")
head = chain.GetBlock(chain.CurrentBlock().Hash(), chain.CurrentBlock().Number.Uint64())
)
blocks, _ := core.GenerateChain(config, head, chain.Engine(), db, 1, func(i int, b *core.BlockGen) {
b.SetPoS()
tx, err := types.SignTx(types.NewTx(&types.BlobTx{
Nonce: b.TxNonce(address),
Gas: 50000,
GasTipCap: uint256.NewInt(params.GWei),
GasFeeCap: new(uint256.Int).Mul(uint256.NewInt(3), uint256.NewInt(params.GWei)),
To: dest,
Data: common.FromHex("0x12a7b914"),
BlobFeeCap: uint256.NewInt(params.GWei),
BlobHashes: []common.Hash{{1}, {1, 2}},
}), signer, key)
if err != nil {
utils.Fatalf("error: %v\n", err)
}
b.SetBlobGas(2 * params.BlobTxBlobGasPerBlob)
b.AddTx(tx)
})
return blocks, nil
}
func fill(ctx *cli.Context) error {
req, err := os.ReadFile(ctx.String("request"))
if err != nil {
return err
}
client, err := newGethClient(context.Background(), ctx, ctx.String("bin"), true)
if err != nil {
return err
}
if err := client.Start(context.Background(), true); err != nil {
return err
}
defer func() {
if err := client.Close(); err != nil {
utils.Fatalf("failed to stop client: %s", err.Error())
}
}()
time.Sleep(5 * time.Second)
response, err := sendGraphQLRequest(client.GraphQLAddr(), req)
if err != nil {
return err
}
if err := os.WriteFile(ctx.String("response"), response, 0644); err != nil {
return err
}
fmt.Printf("Wrote response to %s\n", ctx.String("response"))
return nil
}
func readGenesis(path string) (*core.Genesis, error) {
file, err := os.Open(path)
if err != nil {
return nil, err
}
defer file.Close()
genesis := new(core.Genesis)
if err := json.NewDecoder(file).Decode(genesis); err != nil {
return nil, err
}
return genesis, nil
}
func sendGraphQLRequest(endpoint string, query []byte) ([]byte, error) {
type request struct {
Query string `json:"query"`
}
r := request{Query: string(query)}
var err error
query, err = json.Marshal(r)
if err != nil {
return nil, err
}
return sendRequest("POST", endpoint, query)
}
func sendRequest(method, endpoint string, query []byte) ([]byte, error) {
// Create a new request using http
req, err := http.NewRequest("POST", endpoint, bytes.NewBuffer(query))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return body, nil
}