-
Notifications
You must be signed in to change notification settings - Fork 5
/
ssz_encoding.go
295 lines (221 loc) · 6.69 KB
/
ssz_encoding.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
// Code generated by fastssz. DO NOT EDIT.
// Hash: 3e913cb74b7db9eb4049edc1b26de7a2274819ea5f34346389b2c3f2555658ed
// Version: 0.1.3-dev
package eth2deposit
import (
ssz "github.com/ferranbt/fastssz"
)
// MarshalSSZ ssz marshals the SigningData object
func (s *SigningData) MarshalSSZ() ([]byte, error) {
return ssz.MarshalSSZ(s)
}
// MarshalSSZTo ssz marshals the SigningData object to a target array
func (s *SigningData) MarshalSSZTo(buf []byte) (dst []byte, err error) {
dst = buf
// Field (0) 'ObjectRoot'
dst = append(dst, s.ObjectRoot[:]...)
// Field (1) 'Domain'
dst = append(dst, s.Domain[:]...)
return
}
// UnmarshalSSZ ssz unmarshals the SigningData object
func (s *SigningData) UnmarshalSSZ(buf []byte) error {
var err error
size := uint64(len(buf))
if size != 64 {
return ssz.ErrSize
}
// Field (0) 'ObjectRoot'
copy(s.ObjectRoot[:], buf[0:32])
// Field (1) 'Domain'
copy(s.Domain[:], buf[32:64])
return err
}
// SizeSSZ returns the ssz encoded size in bytes for the SigningData object
func (s *SigningData) SizeSSZ() (size int) {
size = 64
return
}
// HashTreeRoot ssz hashes the SigningData object
func (s *SigningData) HashTreeRoot() ([32]byte, error) {
return ssz.HashWithDefaultHasher(s)
}
// HashTreeRootWith ssz hashes the SigningData object with a hasher
func (s *SigningData) HashTreeRootWith(hh ssz.HashWalker) (err error) {
indx := hh.Index()
// Field (0) 'ObjectRoot'
hh.PutBytes(s.ObjectRoot[:])
// Field (1) 'Domain'
hh.PutBytes(s.Domain[:])
hh.Merkleize(indx)
return
}
// GetTree ssz hashes the SigningData object
func (s *SigningData) GetTree() (*ssz.Node, error) {
return ssz.ProofTree(s)
}
// MarshalSSZ ssz marshals the ForkData object
func (f *ForkData) MarshalSSZ() ([]byte, error) {
return ssz.MarshalSSZ(f)
}
// MarshalSSZTo ssz marshals the ForkData object to a target array
func (f *ForkData) MarshalSSZTo(buf []byte) (dst []byte, err error) {
dst = buf
// Field (0) 'CurrentVersion'
dst = append(dst, f.CurrentVersion[:]...)
// Field (1) 'GenesisValidatorRoot'
dst = append(dst, f.GenesisValidatorRoot[:]...)
return
}
// UnmarshalSSZ ssz unmarshals the ForkData object
func (f *ForkData) UnmarshalSSZ(buf []byte) error {
var err error
size := uint64(len(buf))
if size != 36 {
return ssz.ErrSize
}
// Field (0) 'CurrentVersion'
copy(f.CurrentVersion[:], buf[0:4])
// Field (1) 'GenesisValidatorRoot'
copy(f.GenesisValidatorRoot[:], buf[4:36])
return err
}
// SizeSSZ returns the ssz encoded size in bytes for the ForkData object
func (f *ForkData) SizeSSZ() (size int) {
size = 36
return
}
// HashTreeRoot ssz hashes the ForkData object
func (f *ForkData) HashTreeRoot() ([32]byte, error) {
return ssz.HashWithDefaultHasher(f)
}
// HashTreeRootWith ssz hashes the ForkData object with a hasher
func (f *ForkData) HashTreeRootWith(hh ssz.HashWalker) (err error) {
indx := hh.Index()
// Field (0) 'CurrentVersion'
hh.PutBytes(f.CurrentVersion[:])
// Field (1) 'GenesisValidatorRoot'
hh.PutBytes(f.GenesisValidatorRoot[:])
hh.Merkleize(indx)
return
}
// GetTree ssz hashes the ForkData object
func (f *ForkData) GetTree() (*ssz.Node, error) {
return ssz.ProofTree(f)
}
// MarshalSSZ ssz marshals the DepositMessage object
func (d *DepositMessage) MarshalSSZ() ([]byte, error) {
return ssz.MarshalSSZ(d)
}
// MarshalSSZTo ssz marshals the DepositMessage object to a target array
func (d *DepositMessage) MarshalSSZTo(buf []byte) (dst []byte, err error) {
dst = buf
// Field (0) 'Pubkey'
dst = append(dst, d.Pubkey[:]...)
// Field (1) 'WithdrawalCredentials'
dst = append(dst, d.WithdrawalCredentials[:]...)
// Field (2) 'Amount'
dst = ssz.MarshalUint64(dst, d.Amount)
return
}
// UnmarshalSSZ ssz unmarshals the DepositMessage object
func (d *DepositMessage) UnmarshalSSZ(buf []byte) error {
var err error
size := uint64(len(buf))
if size != 88 {
return ssz.ErrSize
}
// Field (0) 'Pubkey'
copy(d.Pubkey[:], buf[0:48])
// Field (1) 'WithdrawalCredentials'
copy(d.WithdrawalCredentials[:], buf[48:80])
// Field (2) 'Amount'
d.Amount = ssz.UnmarshallUint64(buf[80:88])
return err
}
// SizeSSZ returns the ssz encoded size in bytes for the DepositMessage object
func (d *DepositMessage) SizeSSZ() (size int) {
size = 88
return
}
// HashTreeRoot ssz hashes the DepositMessage object
func (d *DepositMessage) HashTreeRoot() ([32]byte, error) {
return ssz.HashWithDefaultHasher(d)
}
// HashTreeRootWith ssz hashes the DepositMessage object with a hasher
func (d *DepositMessage) HashTreeRootWith(hh ssz.HashWalker) (err error) {
indx := hh.Index()
// Field (0) 'Pubkey'
hh.PutBytes(d.Pubkey[:])
// Field (1) 'WithdrawalCredentials'
hh.PutBytes(d.WithdrawalCredentials[:])
// Field (2) 'Amount'
hh.PutUint64(d.Amount)
hh.Merkleize(indx)
return
}
// GetTree ssz hashes the DepositMessage object
func (d *DepositMessage) GetTree() (*ssz.Node, error) {
return ssz.ProofTree(d)
}
// MarshalSSZ ssz marshals the DepositData object
func (d *DepositData) MarshalSSZ() ([]byte, error) {
return ssz.MarshalSSZ(d)
}
// MarshalSSZTo ssz marshals the DepositData object to a target array
func (d *DepositData) MarshalSSZTo(buf []byte) (dst []byte, err error) {
dst = buf
// Field (0) 'Pubkey'
dst = append(dst, d.Pubkey[:]...)
// Field (1) 'WithdrawalCredentials'
dst = append(dst, d.WithdrawalCredentials[:]...)
// Field (2) 'Amount'
dst = ssz.MarshalUint64(dst, d.Amount)
// Field (3) 'Signature'
dst = append(dst, d.Signature[:]...)
return
}
// UnmarshalSSZ ssz unmarshals the DepositData object
func (d *DepositData) UnmarshalSSZ(buf []byte) error {
var err error
size := uint64(len(buf))
if size != 184 {
return ssz.ErrSize
}
// Field (0) 'Pubkey'
copy(d.Pubkey[:], buf[0:48])
// Field (1) 'WithdrawalCredentials'
copy(d.WithdrawalCredentials[:], buf[48:80])
// Field (2) 'Amount'
d.Amount = ssz.UnmarshallUint64(buf[80:88])
// Field (3) 'Signature'
copy(d.Signature[:], buf[88:184])
return err
}
// SizeSSZ returns the ssz encoded size in bytes for the DepositData object
func (d *DepositData) SizeSSZ() (size int) {
size = 184
return
}
// HashTreeRoot ssz hashes the DepositData object
func (d *DepositData) HashTreeRoot() ([32]byte, error) {
return ssz.HashWithDefaultHasher(d)
}
// HashTreeRootWith ssz hashes the DepositData object with a hasher
func (d *DepositData) HashTreeRootWith(hh ssz.HashWalker) (err error) {
indx := hh.Index()
// Field (0) 'Pubkey'
hh.PutBytes(d.Pubkey[:])
// Field (1) 'WithdrawalCredentials'
hh.PutBytes(d.WithdrawalCredentials[:])
// Field (2) 'Amount'
hh.PutUint64(d.Amount)
// Field (3) 'Signature'
hh.PutBytes(d.Signature[:])
hh.Merkleize(indx)
return
}
// GetTree ssz hashes the DepositData object
func (d *DepositData) GetTree() (*ssz.Node, error) {
return ssz.ProofTree(d)
}