-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstreams.go
492 lines (423 loc) · 13.3 KB
/
streams.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
package client
import (
"context"
"fmt"
"time"
"github.com/attestantio/go-eth2-client/spec/bellatrix"
"github.com/attestantio/go-eth2-client/spec/capella"
"github.com/attestantio/go-eth2-client/spec/deneb"
"github.com/chainbound/fiber-go/filter"
"github.com/chainbound/fiber-go/protobuf/api"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"google.golang.org/grpc/metadata"
"google.golang.org/protobuf/types/known/emptypb"
)
// All Available streams:
//
// - sendTransaction
// - sendTransactionSequence
// - sendRawTransaction
// - sendRawTransactionSequence
// - submitBlock
// - subscribeNewTxs
// - subscribeNewRawTxs
// - subscribeNewBlobTxs
// - subscribeNewExecutionPayloads
// - subscribeNewRawExecutionPayloads
// - subscribeNewBeaconBlocks
// - subscribeNewRawBeaconBlocks
// SendTransaction sends the (signed) transaction to Fibernet and returns the hash and a timestamp (us).
// It blocks until the transaction was sent.
func (c *Client) SendTransaction(ctx context.Context, tx *types.Transaction) (string, int64, error) {
rlpTransaction, err := tx.MarshalBinary()
if err != nil {
return tx.Hash().Hex(), 0, err
}
errc := make(chan error)
go func() {
if err := c.txStream.Send(&api.TransactionMsg{RlpTransaction: rlpTransaction}); err != nil {
errc <- err
}
}()
for {
select {
case err := <-errc:
return "", 0, err
default:
}
res, err := c.txStream.Recv()
if err != nil {
return "", 0, err
} else {
return res.Hash, res.Timestamp, nil
}
}
}
// SendRawTransaction sends the RLP-encoded transaction to Fibernet and returns the hash and a timestamp (us).
func (c *Client) SendRawTransaction(ctx context.Context, rawTx []byte) (string, int64, error) {
errc := make(chan error)
go func() {
if err := c.txStream.Send(&api.TransactionMsg{RlpTransaction: rawTx}); err != nil {
errc <- err
}
}()
for {
select {
case err := <-errc:
return "", 0, err
default:
}
res, err := c.txStream.Recv()
if err != nil {
return "", 0, err
} else {
return res.Hash, res.Timestamp, nil
}
}
}
// SendTransactionSequence sends a sequence of transactions to Fibernet and returns the hashes and a timestamp (us).
func (c *Client) SendTransactionSequence(ctx context.Context, transactions ...*types.Transaction) ([]string, int64, error) {
errc := make(chan error)
rlpSequence := make([][]byte, len(transactions))
for i, tx := range transactions {
rlpTransaction, err := tx.MarshalBinary()
if err != nil {
return nil, 0, err
}
rlpSequence[i] = rlpTransaction
}
go func() {
if err := c.txSeqStream.Send(&api.TxSequenceMsgV2{Sequence: rlpSequence}); err != nil {
errc <- err
}
}()
select {
case err := <-errc:
return nil, 0, err
default:
}
res, err := c.txSeqStream.Recv()
if err != nil {
return nil, 0, err
}
hashes := make([]string, len(res.SequenceResponse))
ts := res.SequenceResponse[0].Timestamp
for i, response := range res.SequenceResponse {
hashes[i] = response.Hash
}
return hashes, ts, nil
}
// SendRawTransactionSequence sends a sequence of RLP-encoded transactions to Fibernet and returns the hashes and a timestamp (us).
func (c *Client) SendRawTransactionSequence(ctx context.Context, rawTransactions ...[]byte) ([]string, int64, error) {
errc := make(chan error)
go func() {
if err := c.txSeqStream.Send(&api.TxSequenceMsgV2{Sequence: rawTransactions}); err != nil {
errc <- err
}
}()
select {
case err := <-errc:
return nil, 0, err
default:
}
res, err := c.txSeqStream.Recv()
if err != nil {
return nil, 0, err
}
hashes := make([]string, len(res.SequenceResponse))
ts := res.SequenceResponse[0].Timestamp
for i, response := range res.SequenceResponse {
hashes[i] = response.Hash
}
return hashes, ts, nil
}
// SubmitBlock submits an SSZ encoded signed block to Fiber and returns the slot, state root and timestamp (us).
func (c *Client) SubmitBlock(ctx context.Context, sszBlock []byte) (uint64, []byte, uint64, error) {
errc := make(chan error)
go func() {
if err := c.submitBlockStream.Send(&api.BlockSubmissionMsg{SszBlock: sszBlock}); err != nil {
errc <- err
}
}()
select {
case err := <-errc:
return 0, nil, 0, err
default:
}
res, err := c.submitBlockStream.Recv()
if err != nil {
return 0, nil, 0, err
}
return res.Slot, res.StateRoot, res.Timestamp, nil
}
// SubscribeNewTxs subscribes to new transactions, and sends transactions on the given
// channel according to the filter. This function blocks and should be called in a goroutine.
// If there's an error receiving the new message it will close the channel and return the error.
func (c *Client) SubscribeNewTxs(filter *filter.Filter, ch chan<- *TransactionWithSender) error {
attempts := 0
outer:
for {
attempts++
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
protoFilter := &api.TxFilter{}
if filter != nil {
protoFilter.Encoded = filter.Encode()
}
c.logger.Debugw("Subscribing to transactions")
res, err := c.client.SubscribeNewTxsV2(ctx, protoFilter)
if err != nil {
c.logger.Errorw("Error subscribing to transactions", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to transactions after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
// For now, retry on every error.
if err != nil {
c.logger.Errorw("Error receiving transactions", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
tx := new(types.Transaction)
if err := tx.UnmarshalBinary(proto.RlpTransaction); err != nil {
continue outer
}
sender := common.BytesToAddress(proto.Sender)
txWithSender := TransactionWithSender{
Sender: &sender,
Transaction: tx,
}
ch <- &txWithSender
}
}
}
// SubscribeNewRawTxs subscribes to new RLP-encoded transaction bytes, and sends transactions on the given
// channel according to the filter. This function blocks and should be called in a goroutine.
// If there's an error receiving the new message it will close the channel and return the error.
func (c *Client) SubscribeNewRawTxs(filter *filter.Filter, ch chan<- *RawTransactionWithSender) error {
attempts := 0
outer:
for {
attempts++
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
protoFilter := &api.TxFilter{}
if filter != nil {
protoFilter.Encoded = filter.Encode()
}
c.logger.Debugw("Subscribing to raw transactions")
res, err := c.client.SubscribeNewTxsV2(ctx, protoFilter)
if err != nil {
c.logger.Errorw("Error subscribing to raw transactions", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to raw transactions after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
// For now, retry on every error.
if err != nil {
c.logger.Errorw("Error receiving raw transactions", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
sender := common.BytesToAddress(proto.Sender)
rawTxWithSender := &RawTransactionWithSender{
Sender: &sender,
Rlp: proto.RlpTransaction,
}
ch <- rawTxWithSender
}
}
}
func (c *Client) SubscribeNewBlobTxs(ch chan<- *TransactionWithSender) error {
attempts := 0
outer:
for {
attempts++
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
c.logger.Debugw("Subscribing to blob transactions")
res, err := c.client.SubscribeNewBlobTxs(ctx, &emptypb.Empty{})
if err != nil {
c.logger.Errorw("Error subscribing to blob transactions", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to blob transactions after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
// For now, retry on every error.
if err != nil {
c.logger.Errorw("Error receiving blob transactions", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
tx := new(types.Transaction)
if err := tx.UnmarshalBinary(proto.RlpTransaction); err != nil {
continue outer
}
sender := common.BytesToAddress(proto.Sender)
txWithSender := TransactionWithSender{
Sender: &sender,
Transaction: tx,
}
ch <- &txWithSender
}
}
}
// SubscribeNewBlocks subscribes to new execution payloads, and sends blocks on the given
// channel. This function blocks and should be called in a goroutine.
// If there's an error receiving the new message it will close the channel and return the error.
func (c *Client) SubscribeNewExecutionPayloads(ch chan<- *Block) error {
attempts := 0
outer:
for {
attempts++
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
c.logger.Debugw("Subscribing to execution payloads")
res, err := c.client.SubscribeExecutionPayloadsV2(ctx, &emptypb.Empty{})
if err != nil {
c.logger.Errorw("Error subscribing to execution payloads", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to execution payloads after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
if err != nil {
c.logger.Errorw("Error receiving execution payloads", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
switch proto.DataVersion {
case DataVersionBellatrix:
block, err := DecodeBellatrixExecutionPayload(proto)
if err != nil {
continue
}
ch <- block
case DataVersionCapella:
block, err := DecodeCapellaExecutionPayload(proto)
if err != nil {
continue
}
ch <- block
case DataVersionDeneb:
block, err := DecodeDenebExecutionPayload(proto)
if err != nil {
continue
}
ch <- block
}
}
}
}
// SubscribeNewBeaconBlocks subscribes to new beacon blocks, and sends blocks on the given
// channel. This function blocks and should be called in a goroutine.
// If there's an error receiving the new message it will close the channel and return the error.
func (c *Client) SubscribeNewBeaconBlocks(ch chan<- *SignedBeaconBlock) error {
attempts := 0
outer:
for {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
c.logger.Debugw("Subscribing to beacon blocks")
res, err := c.client.SubscribeBeaconBlocksV2(ctx, &emptypb.Empty{})
if err != nil {
c.logger.Errorw("Error subscribing to beacon blocks", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to beacon blocks after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
if err != nil {
c.logger.Errorw("Error receiving beacon blocks", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
signedBeaconBlock := new(SignedBeaconBlock)
signedBeaconBlock.DataVersion = proto.DataVersion
switch proto.DataVersion {
case DataVersionBellatrix:
block := new(bellatrix.SignedBeaconBlock)
if err := block.UnmarshalSSZ(proto.SszBlock); err != nil {
continue outer
}
signedBeaconBlock.Bellatrix = block
ch <- signedBeaconBlock
case DataVersionCapella:
block := new(capella.SignedBeaconBlock)
if err := block.UnmarshalSSZ(proto.SszBlock); err != nil {
continue outer
}
signedBeaconBlock.Capella = block
ch <- signedBeaconBlock
case DataVersionDeneb:
block := new(deneb.SignedBeaconBlock)
if err := block.UnmarshalSSZ(proto.SszBlock); err != nil {
continue outer
}
signedBeaconBlock.Deneb = block
ch <- signedBeaconBlock
}
}
}
}
// SubscribeNewRawBeaconBlocks subscribes to new SSZ-encoded raw signed beacon blocks, and sends
// blocks on the given channel. This function blocks and should be called in a goroutine.
// If there's an error receiving the new message it will close the channel and return the error.
func (c *Client) SubscribeNewRawBeaconBlocks(ch chan<- []byte) error {
attempts := 0
outer:
for {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ctx = metadata.AppendToOutgoingContext(ctx, "x-api-key", c.key)
ctx = metadata.AppendToOutgoingContext(ctx, "x-client-version", Version)
c.logger.Debugw("Subscribing to raw beacon blocks")
res, err := c.client.SubscribeBeaconBlocksV2(ctx, &emptypb.Empty{})
if err != nil {
c.logger.Errorw("Error subscribing to raw beacon blocks", "error", err)
if attempts > 50 {
return fmt.Errorf("subscribing to raw beacon blocks after 50 attempts: %w", err)
}
time.Sleep(time.Second * 2)
continue outer
}
for {
proto, err := res.Recv()
if err != nil {
c.logger.Errorw("Error receiving raw beacon blocks", "error", err)
time.Sleep(time.Second * 2)
continue outer
}
ch <- proto.SszBlock
}
}
}