forked from Layr-Labs/eigenpod-proofs-generation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onchain_test.go
342 lines (292 loc) · 13.9 KB
/
onchain_test.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package eigenpodproofs
import (
"encoding/hex"
"fmt"
"math/big"
"testing"
beacon "github.com/Layr-Labs/eigenpod-proofs-generation/beacon"
contractBeaconChainProofs "github.com/Layr-Labs/eigenpod-proofs-generation/bindings"
"github.com/attestantio/go-eth2-client/spec"
"github.com/attestantio/go-eth2-client/spec/capella"
"github.com/attestantio/go-eth2-client/spec/deneb"
"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/stretchr/testify/assert"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
)
func TestValidatorContainersProofOnChain(t *testing.T) {
var oracleState deneb.BeaconState
stateFile := "data/deneb_goerli_slot_7413760.json"
stateJSON, err := ParseJSONFileDeneb(stateFile)
if err != nil {
fmt.Println("error with JSON parsing beacon state")
}
ParseDenebBeaconStateFromJSON(*stateJSON, &oracleState)
versionedOracleState, err := beacon.CreateVersionedState(&oracleState)
if err != nil {
fmt.Println("error", err)
}
oracleBlockHeader, err = ExtractBlockHeader("data/deneb_goerli_block_header_7413760.json")
if err != nil {
fmt.Println("error", err)
}
verifyValidatorFieldsCallParams, err := epp.ProveValidatorContainers(&oracleBlockHeader, &versionedOracleState, []uint64{VALIDATOR_INDEX})
if err != nil {
fmt.Println("error", err)
}
validatorFieldsProof := verifyValidatorFieldsCallParams.ValidatorFieldsProofs[0].ToByteSlice()
validatorIndex := new(big.Int).SetUint64(verifyValidatorFieldsCallParams.ValidatorIndices[0])
oracleBlockHeaderRoot, err := oracleBlockHeader.HashTreeRoot()
if err != nil {
fmt.Println("error", err)
}
err = beaconChainProofs.VerifyStateRootAgainstLatestBlockRoot(
&bind.CallOpts{},
oracleBlockHeaderRoot,
verifyValidatorFieldsCallParams.StateRootProof.BeaconStateRoot,
verifyValidatorFieldsCallParams.StateRootProof.StateRootProof.ToByteSlice(),
)
if err != nil {
fmt.Println("error", err)
}
assert.Nil(t, err)
var validatorFields [][32]byte
for _, field := range verifyValidatorFieldsCallParams.ValidatorFields[0] {
validatorFields = append(validatorFields, field)
}
err = beaconChainProofs.VerifyValidatorFields(
&bind.CallOpts{},
verifyValidatorFieldsCallParams.StateRootProof.BeaconStateRoot,
validatorFields,
validatorFieldsProof,
validatorIndex,
)
if err != nil {
fmt.Println("error", err)
}
assert.Nil(t, err)
}
// TODO: get these tests working
func TestProvingDenebWithdrawalAgainstDenebStateOnChain(t *testing.T) {
oracleStateFile := "data/deneb_goerli_slot_7431952.json"
oracleStateJSON, err := ParseJSONFileDeneb(oracleStateFile)
if err != nil {
fmt.Println("error with JSON parsing beacon state")
}
oracleState := deneb.BeaconState{}
ParseDenebBeaconStateFromJSON(*oracleStateJSON, &oracleState)
oracleHeaderFile := "data/deneb_goerli_block_header_7431952.json"
oracleBlockHeader, err = ExtractBlockHeader(oracleHeaderFile)
if err != nil {
fmt.Println("error with block header", err)
}
versionedOracleState, err := beacon.CreateVersionedState(&oracleState)
if err != nil {
fmt.Println("error creating versioned state", err)
}
historicalSummaryStateJSON, err := ParseJSONFileDeneb("data/deneb_goerli_slot_7421952.json")
if err != nil {
fmt.Println("error parsing historicalSummaryState JSON")
}
var historicalSummaryState deneb.BeaconState
ParseDenebBeaconStateFromJSON(*historicalSummaryStateJSON, &historicalSummaryState)
historicalSummaryStateBlockRoots := historicalSummaryState.BlockRoots
withdrawalBlock, err := ExtractBlockDeneb("data/deneb_goerli_block_7421951.json")
if err != nil {
fmt.Println("block.UnmarshalJSON error", err)
}
versionedWithdrawalBlock, err := beacon.CreateVersionedSignedBlock(withdrawalBlock)
if err != nil {
fmt.Println("error", err)
}
withdrawalValidatorIndex := uint64(627559) //this is the index of the validator with the first withdrawal in the withdrawalBlock 7421951
verifyAndProcessWithdrawalCallParams, err := epp.ProveWithdrawals(
&oracleBlockHeader,
&versionedOracleState,
[][]phase0.Root{historicalSummaryStateBlockRoots},
[]*spec.VersionedSignedBeaconBlock{&versionedWithdrawalBlock},
[]uint64{withdrawalValidatorIndex},
)
if err != nil {
fmt.Println("error", err)
}
var withdrawalFields [][32]byte
for _, field := range verifyAndProcessWithdrawalCallParams.WithdrawalFields[0] {
withdrawalFields = append(withdrawalFields, field)
}
withdrawalProof := contractBeaconChainProofs.BeaconChainProofsContractWithdrawalProof{
WithdrawalProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalProof.ToByteSlice(),
SlotProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotProof.ToByteSlice(),
ExecutionPayloadProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadProof.ToByteSlice(),
TimestampProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampProof.ToByteSlice(),
HistoricalSummaryBlockRootProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryBlockRootProof.ToByteSlice(),
BlockRootIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRootIndex,
HistoricalSummaryIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryIndex,
WithdrawalIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalIndex,
BlockRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRoot,
SlotRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotRoot,
TimestampRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampRoot,
ExecutionPayloadRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadRoot,
}
fmt.Println("historicalSummaryndex ", verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryIndex)
fmt.Println("blockRootIndex ", verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRootIndex)
fmt.Println("beacon state root: ", hex.EncodeToString(verifyAndProcessWithdrawalCallParams.StateRootProof.BeaconStateRoot[:]))
err = beaconChainProofs.VerifyWithdrawal(
&bind.CallOpts{},
verifyAndProcessWithdrawalCallParams.StateRootProof.BeaconStateRoot,
withdrawalFields,
withdrawalProof,
DENEB_FORK_TIMESTAMP_GOERLI,
)
if err != nil {
fmt.Println("error", err)
}
assert.Nil(t, err)
}
func TestProvingCapellaWithdrawalAgainstDenebStateOnChain(t *testing.T) {
oracleStateFile := "data/deneb_goerli_slot_7431952.json"
oracleStateJSON, err := ParseJSONFileDeneb(oracleStateFile)
if err != nil {
fmt.Println("error with JSON parsing beacon state")
}
oracleState := deneb.BeaconState{}
ParseDenebBeaconStateFromJSON(*oracleStateJSON, &oracleState)
oracleHeaderFile := "data/deneb_goerli_block_header_7431952.json"
oracleBlockHeader, err = ExtractBlockHeader(oracleHeaderFile)
if err != nil {
fmt.Println("error with block header", err)
}
versionedOracleState, err := beacon.CreateVersionedState(&oracleState)
if err != nil {
fmt.Println("error creating versioned state", err)
}
historicalSummaryStateJSON, err := ParseJSONFileCapella("data/goerli_slot_6397952.json")
if err != nil {
fmt.Println("error parsing historicalSummaryState JSON")
}
var historicalSummaryState capella.BeaconState
ParseCapellaBeaconStateFromJSON(*historicalSummaryStateJSON, &historicalSummaryState)
historicalSummaryStateBlockRoots := historicalSummaryState.BlockRoots
withdrawalBlock, err := ExtractBlockCapella("data/goerli_block_6397852.json")
if err != nil {
fmt.Println("block.UnmarshalJSON error", err)
}
versionedWithdrawalBlock, err := beacon.CreateVersionedSignedBlock(withdrawalBlock)
if err != nil {
fmt.Println("error", err)
}
withdrawalValidatorIndex := uint64(200240) //this is the index of the validator with the first withdrawal in the withdrawalBlock 7421951
verifyAndProcessWithdrawalCallParams, err := epp.ProveWithdrawals(
&oracleBlockHeader,
&versionedOracleState,
[][]phase0.Root{historicalSummaryStateBlockRoots},
[]*spec.VersionedSignedBeaconBlock{&versionedWithdrawalBlock},
[]uint64{withdrawalValidatorIndex},
)
if err != nil {
fmt.Println("error", err)
}
var withdrawalFields [][32]byte
for _, field := range verifyAndProcessWithdrawalCallParams.WithdrawalFields[0] {
withdrawalFields = append(withdrawalFields, field)
}
withdrawalProof := contractBeaconChainProofs.BeaconChainProofsContractWithdrawalProof{
WithdrawalProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalProof.ToByteSlice(),
SlotProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotProof.ToByteSlice(),
ExecutionPayloadProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadProof.ToByteSlice(),
TimestampProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampProof.ToByteSlice(),
HistoricalSummaryBlockRootProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryBlockRootProof.ToByteSlice(),
BlockRootIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRootIndex,
HistoricalSummaryIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryIndex,
WithdrawalIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalIndex,
BlockRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRoot,
SlotRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotRoot,
TimestampRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampRoot,
ExecutionPayloadRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadRoot,
}
fmt.Println("historicalSummaryndex ", verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryIndex)
fmt.Println("blockRootIndex ", verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRootIndex)
err = beaconChainProofs.VerifyWithdrawal(
&bind.CallOpts{},
verifyAndProcessWithdrawalCallParams.StateRootProof.BeaconStateRoot,
withdrawalFields,
withdrawalProof,
DENEB_FORK_TIMESTAMP_GOERLI,
)
if err != nil {
fmt.Println("error", err)
}
assert.Nil(t, err)
}
func TestProvingCapellaWithdrawalAgainstCapellaStateOnChain(t *testing.T) {
oracleStateFile := "data/goerli_slot_6409723.json"
oracleStateJSON, err := ParseJSONFileCapella(oracleStateFile)
if err != nil {
fmt.Println("error with JSON parsing beacon state")
}
oracleState := capella.BeaconState{}
ParseCapellaBeaconStateFromJSON(*oracleStateJSON, &oracleState)
oracleHeaderFile := "data/goerli_block_header_6409723.json"
oracleBlockHeader, err = ExtractBlockHeader(oracleHeaderFile)
if err != nil {
fmt.Println("error with block header", err)
}
versionedOracleState, err := beacon.CreateVersionedState(&oracleState)
if err != nil {
fmt.Println("error creating versioned state", err)
}
historicalSummaryStateJSON, err := ParseJSONFileCapella("data/goerli_slot_6397952.json")
if err != nil {
fmt.Println("error parsing historicalSummaryState JSON")
}
var historicalSummaryState capella.BeaconState
ParseCapellaBeaconStateFromJSON(*historicalSummaryStateJSON, &historicalSummaryState)
historicalSummaryStateBlockRoots := historicalSummaryState.BlockRoots
withdrawalBlock, err := ExtractBlockCapella("data/goerli_block_6397852.json")
if err != nil {
fmt.Println("block.UnmarshalJSON error", err)
}
versionedWithdrawalBlock, err := beacon.CreateVersionedSignedBlock(withdrawalBlock)
if err != nil {
fmt.Println("error", err)
}
withdrawalValidatorIndex := uint64(200240) //this is the index of the validator with the first withdrawal in the withdrawalBlock 7421951
verifyAndProcessWithdrawalCallParams, err := epp.ProveWithdrawals(
&oracleBlockHeader,
&versionedOracleState,
[][]phase0.Root{historicalSummaryStateBlockRoots},
[]*spec.VersionedSignedBeaconBlock{&versionedWithdrawalBlock},
[]uint64{withdrawalValidatorIndex},
)
if err != nil {
fmt.Println("error", err)
}
var withdrawalFields [][32]byte
for _, field := range verifyAndProcessWithdrawalCallParams.WithdrawalFields[0] {
withdrawalFields = append(withdrawalFields, field)
}
withdrawalProof := contractBeaconChainProofs.BeaconChainProofsContractWithdrawalProof{
WithdrawalProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalProof.ToByteSlice(),
SlotProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotProof.ToByteSlice(),
ExecutionPayloadProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadProof.ToByteSlice(),
TimestampProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampProof.ToByteSlice(),
HistoricalSummaryBlockRootProof: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryBlockRootProof.ToByteSlice(),
BlockRootIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRootIndex,
HistoricalSummaryIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].HistoricalSummaryIndex,
WithdrawalIndex: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].WithdrawalIndex,
BlockRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].BlockRoot,
SlotRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].SlotRoot,
TimestampRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].TimestampRoot,
ExecutionPayloadRoot: verifyAndProcessWithdrawalCallParams.WithdrawalProofs[0].ExecutionPayloadRoot,
}
err = beaconChainProofs.VerifyWithdrawal(
&bind.CallOpts{},
verifyAndProcessWithdrawalCallParams.StateRootProof.BeaconStateRoot,
withdrawalFields,
withdrawalProof,
DENEB_FORK_TIMESTAMP_GOERLI,
)
if err != nil {
fmt.Println("error", err)
}
assert.Nil(t, err)
}