-
Notifications
You must be signed in to change notification settings - Fork 22
/
on_chain_verifier.go
235 lines (204 loc) · 6.74 KB
/
on_chain_verifier.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
// Copyright (C) 2023 Gobalsky Labs Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package staking
import (
"context"
"encoding/hex"
"strings"
"sync"
"time"
"code.vegaprotocol.io/vega/core/types"
"code.vegaprotocol.io/vega/logging"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
ethcmn "github.com/ethereum/go-ethereum/common"
)
type EthereumClient interface {
bind.ContractFilterer
}
type OnChainVerifier struct {
log *logging.Logger
ethClient EthereumClient
ethConfirmations EthConfirmations
mu sync.RWMutex
stakingBridgeAddresses []ethcmn.Address
}
func NewOnChainVerifier(
cfg Config,
log *logging.Logger,
ethClient EthereumClient,
ethConfirmations EthConfirmations,
) *OnChainVerifier {
log = log.Named("on-chain-verifier")
log.SetLevel(cfg.Level.Get())
return &OnChainVerifier{
log: log,
ethClient: ethClient,
ethConfirmations: ethConfirmations,
}
}
func (o *OnChainVerifier) UpdateStakingBridgeAddresses(stakingBridgeAddresses []ethcmn.Address) {
o.mu.Lock()
defer o.mu.Unlock()
o.stakingBridgeAddresses = stakingBridgeAddresses
if o.log.GetLevel() <= logging.DebugLevel {
var addresses []string
for _, v := range o.stakingBridgeAddresses {
addresses = append(addresses, v.Hex())
}
o.log.Debug("staking bridge addresses updated",
logging.Strings("addresses", addresses))
}
}
func (o *OnChainVerifier) CheckStakeDeposited(
event *types.StakeDeposited,
) error {
o.mu.RLock()
defer o.mu.RUnlock()
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("checking stake deposited event on chain",
logging.String("event", event.String()),
)
}
decodedPubKeySlice, err := hex.DecodeString(event.VegaPubKey)
if err != nil {
o.log.Error("invalid pubkey in stake deposited event", logging.Error(err))
return err
}
var decodedPubKey [32]byte
copy(decodedPubKey[:], decodedPubKeySlice[0:32])
for _, address := range o.stakingBridgeAddresses {
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("checking stake deposited event on chain",
logging.String("bridge-address", address.Hex()),
logging.String("event", event.String()),
)
}
filterer, err := NewStakingFilterer(address, o.ethClient)
if err != nil {
o.log.Error("could not instantiate staking bridge filterer",
logging.String("address", address.Hex()))
continue
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
iter, err := filterer.FilterStakeDeposited(
&bind.FilterOpts{
Start: event.BlockNumber,
End: &event.BlockNumber,
Context: ctx,
},
// user
[]ethcmn.Address{ethcmn.HexToAddress(event.EthereumAddress)},
// vega_public_key
[][32]byte{decodedPubKey})
if err != nil {
o.log.Error("Couldn't start filtering on stake deposited event", logging.Error(err))
continue
}
defer iter.Close()
vegaPubKey := strings.TrimPrefix(event.VegaPubKey, "0x")
amountDeposited := event.Amount.BigInt()
for iter.Next() {
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("found stake deposited event on chain",
logging.String("bridge-address", address.Hex()),
logging.String("amount", iter.Event.Amount.String()),
logging.String("user", iter.Event.User.Hex()),
)
}
if !iter.Event.Raw.Removed && // ignore removed events
hex.EncodeToString(iter.Event.VegaPublicKey[:]) == vegaPubKey &&
iter.Event.Amount.Cmp(amountDeposited) == 0 &&
iter.Event.Raw.BlockNumber == event.BlockNumber &&
uint64(iter.Event.Raw.Index) == event.LogIndex &&
iter.Event.Raw.TxHash.Hex() == event.TxID {
// now we know the event is OK,
// just need to check for confirmations
return o.ethConfirmations.Check(event.BlockNumber)
}
}
}
return ErrNoStakeDepositedEventFound
}
func (o *OnChainVerifier) CheckStakeRemoved(event *types.StakeRemoved) error {
o.mu.RLock()
defer o.mu.RUnlock()
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("checking stake removed event on chain",
logging.String("event", event.String()),
)
}
decodedPubKeySlice, err := hex.DecodeString(event.VegaPubKey)
if err != nil {
o.log.Error("invalid pubkey inn stake deposited event", logging.Error(err))
return err
}
var decodedPubKey [32]byte
copy(decodedPubKey[:], decodedPubKeySlice[0:32])
for _, address := range o.stakingBridgeAddresses {
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("checking stake removed event on chain",
logging.String("bridge-address", address.Hex()),
logging.String("event", event.String()),
)
}
filterer, err := NewStakingFilterer(address, o.ethClient)
if err != nil {
o.log.Error("could not instantiate staking bridge filterer",
logging.String("address", address.Hex()))
continue
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
iter, err := filterer.FilterStakeRemoved(
&bind.FilterOpts{
Start: event.BlockNumber,
End: &event.BlockNumber,
Context: ctx,
},
// user
[]ethcmn.Address{ethcmn.HexToAddress(event.EthereumAddress)},
// vega_public_key
[][32]byte{decodedPubKey})
if err != nil {
o.log.Error("could not start stake deposited filter",
logging.Error(err))
continue
}
defer iter.Close()
vegaPubKey := strings.TrimPrefix(event.VegaPubKey, "0x")
amountDeposited := event.Amount.BigInt()
for iter.Next() {
if o.log.GetLevel() <= logging.DebugLevel {
o.log.Debug("found stake removed event on chain",
logging.String("bridge-address", address.Hex()),
logging.String("amount", iter.Event.Amount.String()),
logging.String("user", iter.Event.User.Hex()),
)
}
if !iter.Event.Raw.Removed && // ignore removed events
hex.EncodeToString(iter.Event.VegaPublicKey[:]) == vegaPubKey &&
iter.Event.Amount.Cmp(amountDeposited) == 0 &&
iter.Event.Raw.BlockNumber == event.BlockNumber &&
uint64(iter.Event.Raw.Index) == event.LogIndex &&
iter.Event.Raw.TxHash.Hex() == event.TxID {
// now we know the event is OK,
// just need to check for confirmations
return o.ethConfirmations.Check(event.BlockNumber)
}
}
}
return ErrNoStakeRemovedEventFound
}