-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcore_snapshot.go
486 lines (454 loc) · 14.6 KB
/
core_snapshot.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
package diff
import (
"io/ioutil"
"os"
"code.vegaprotocol.io/vega/libs/crypto"
dn "code.vegaprotocol.io/vega/protos/data-node/api/v2"
"code.vegaprotocol.io/vega/protos/vega"
events "code.vegaprotocol.io/vega/protos/vega/events/v1"
v1 "code.vegaprotocol.io/vega/protos/vega/events/v1"
snapshot "code.vegaprotocol.io/vega/protos/vega/snapshot/v1"
decimal "github.com/shopspring/decimal"
"google.golang.org/protobuf/proto"
)
type snap struct {
chunk *snapshot.Chunk
}
// Collect returns a dataset for comparison from core snapshot.
func (s *snap) Collect() *Result {
return &Result{
Accounts: s.getAccounts(),
Orders: s.getOrders(),
Markets: s.getMarkets(),
Parties: s.getParties(),
Limits: s.getNetLimits(),
Assets: s.getAssets(),
VegaTime: s.getVegaTime(),
Delegations: s.getDelegations(),
Epoch: s.getEpoch(),
Nodes: s.getValidators(),
NetParams: s.getNetParams(),
Proposals: s.getProposals(),
Deposits: s.getDeposits(),
Withdrawals: s.getWithdrawals(),
Transfers: s.getTransfers(),
Positions: s.getPositions(),
Lps: s.getLps(),
Stake: s.getStake(),
}
}
// getNetParams returns the network parmeters from the core snapshot.
func (s *snap) getNetParams() []*vega.NetworkParameter {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_NetworkParameters:
return c.GetNetworkParameters().Params
default:
continue
}
}
return []*vega.NetworkParameter{}
}
// getWithdrawals returns withdrawals from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getWithdrawals() []*vega.Withdrawal {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_BankingWithdrawals:
withdrawalsSnap := c.GetBankingWithdrawals().Withdrawals
withdrawals := make([]*vega.Withdrawal, 0, len(withdrawalsSnap))
for _, w := range withdrawalsSnap {
w.Withdrawal.CreatedTimestamp = (w.Withdrawal.CreatedTimestamp / 1000) * 1000
w.Withdrawal.WithdrawnTimestamp = (w.Withdrawal.WithdrawnTimestamp / 1000) * 1000
w.Withdrawal.Ext = nil
withdrawals = append(withdrawals, w.Withdrawal)
}
return withdrawals
default:
continue
}
}
return []*vega.Withdrawal{}
}
// getDeposits returns deposits from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getDeposits() []*vega.Deposit {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_BankingDeposits:
depositsSnap := c.GetBankingDeposits().Deposit
deposits := make([]*vega.Deposit, 0, len(depositsSnap))
for _, d := range depositsSnap {
d.Deposit.CreatedTimestamp = (d.Deposit.CreatedTimestamp / 1000) * 1000
d.Deposit.CreditedTimestamp = (d.Deposit.CreditedTimestamp / 1000) * 1000
deposits = append(deposits, d.Deposit)
}
return deposits
default:
continue
}
}
return []*vega.Deposit{}
}
// getLps returns the liquidity provisions from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getLps() []*vega.LiquidityProvision {
lps := []*vega.LiquidityProvision{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_LiquidityProvisions:
lps = append(lps, c.GetLiquidityProvisions().LiquidityProvisions...)
case *snapshot.Payload_LiquidityV2Provisions:
lps = append(lps, c.GetLiquidityV2Provisions().LiquidityProvisions...)
default:
continue
}
}
for _, lp := range lps {
lp.CreatedAt = (lp.CreatedAt / 1000) * 1000
lp.UpdatedAt = (lp.UpdatedAt / 1000) * 1000
}
return lps
}
// getStake returns stake linking from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getStake() []*v1.StakeLinking {
stakeLinkings := []*v1.StakeLinking{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_StakingAccounts:
for _, sa := range c.GetStakingAccounts().Accounts {
stakeLinkings = append(stakeLinkings, sa.Events...)
}
for _, s := range stakeLinkings {
s.FinalizedAt = (s.FinalizedAt / 1000) * 1000
}
case *snapshot.Payload_StakeVerifierDeposited:
for _, pending := range c.GetStakeVerifierDeposited().PendingDeposited {
sl := &v1.StakeLinking{
Id: pending.Id,
Type: v1.StakeLinking_TYPE_LINK,
Ts: pending.BlockTime,
Party: pending.VegaPublicKey,
Amount: pending.Amount,
TxHash: pending.TxId,
BlockHeight: pending.BlockNumber,
BlockTime: pending.BlockTime,
LogIndex: pending.LogIndex,
EthereumAddress: pending.EthereumAddress,
Status: v1.StakeLinking_STATUS_PENDING,
}
stakeLinkings = append(stakeLinkings, sl)
}
case *snapshot.Payload_StakeVerifierRemoved:
for _, pending := range c.GetStakeVerifierRemoved().PendingRemoved {
sl := &v1.StakeLinking{
Id: pending.Id,
Type: v1.StakeLinking_TYPE_UNLINK,
Ts: pending.BlockTime,
Party: pending.VegaPublicKey,
Amount: pending.Amount,
TxHash: pending.TxId,
BlockHeight: pending.BlockNumber,
BlockTime: pending.BlockTime,
LogIndex: pending.LogIndex,
EthereumAddress: pending.EthereumAddress,
Status: v1.StakeLinking_STATUS_PENDING,
}
stakeLinkings = append(stakeLinkings, sl)
}
default:
continue
}
}
return stakeLinkings
}
// getAccounts returns account balances from the core snapshot. To make it compatible with datanode, network owner and no market are replaced with empty string.
func (s *snap) getAccounts() []*dn.AccountBalance {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_CollateralAccounts:
accs := c.GetCollateralAccounts().Accounts
balances := make([]*dn.AccountBalance, 0, len(accs))
for _, a := range accs {
owner := a.Owner
if owner == "*" {
owner = ""
}
marketID := a.MarketId
if marketID == "!" {
marketID = ""
}
balances = append(balances, &dn.AccountBalance{
Owner: owner,
MarketId: marketID,
Balance: a.Balance,
Asset: a.Asset,
Type: a.Type,
})
}
return balances
default:
continue
}
}
return []*dn.AccountBalance{}
}
// getOrders returns the order book orders from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution. In addition price is scaled to the asset decimals to be comparable with data node.
func (s *snap) getOrders() []*vega.Order {
orders := []*vega.Order{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_MatchingBook:
orders = append(orders, c.GetMatchingBook().Buy...)
orders = append(orders, c.GetMatchingBook().Sell...)
default:
continue
}
}
assets := s.getAssets()
markets := s.getMarkets()
dpFactors := map[string]decimal.Decimal{}
for _, m := range markets {
marketDecimals := m.DecimalPlaces
asset, _ := m.GetAsset()
for _, a := range assets {
if a.Id == asset {
dpFactors[m.Id] = decimal.NewFromFloat32(10).Pow(decimal.NewFromFloat32(float32(a.Details.Decimals - marketDecimals)))
}
}
}
for _, o := range orders {
o.CreatedAt = (o.CreatedAt / 1000) * 1000
o.ExpiresAt = (o.ExpiresAt / 1000) * 1000
o.UpdatedAt = (o.UpdatedAt / 1000) * 1000
price, _ := decimal.NewFromString(o.Price)
o.Price = price.Div(dpFactors[o.MarketId]).Truncate(0).String()
}
return orders
}
// getMarkets returns active markets from the core snapshot.
func (s *snap) getMarkets() []*vega.Market {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_ExecutionMarkets:
markets := []*vega.Market{}
for _, m := range c.GetExecutionMarkets().Markets {
markets = append(markets, m.Market)
}
return markets
default:
continue
}
}
return []*vega.Market{}
}
// getParties returns parties as a combination of parties with accounts and parties staking account. To make it comparable with datanode, network party * is replaced with "network".
func (s *snap) getParties() []*vega.Party {
partyMap := map[string]struct{}{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_CollateralAccounts:
for _, a := range c.GetCollateralAccounts().Accounts {
if len(a.Owner) > 0 {
owner := a.Owner
if owner == "*" {
owner = "network"
}
partyMap[owner] = struct{}{}
}
}
case *snapshot.Payload_StakingAccounts:
for _, a := range c.GetStakingAccounts().Accounts {
partyMap[a.Party] = struct{}{}
}
default:
continue
}
}
parties := make([]*vega.Party, 0, len(partyMap))
for k := range partyMap {
parties = append(parties, &vega.Party{Id: k})
}
return parties
}
// getNetLimits returns the nework limits from the core snapshot. To work around snapshot specific logic of enabled to/from it is only set if positive.
func (s *snap) getNetLimits() *vega.NetworkLimits {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_LimitState:
limits := c.GetLimitState()
nl := &vega.NetworkLimits{
CanProposeMarket: limits.CanProposeMarket,
CanProposeAsset: limits.CanProposeAsset,
GenesisLoaded: limits.GenesisLoaded,
ProposeMarketEnabled: limits.ProposeMarketEnabled,
ProposeAssetEnabled: limits.ProposeAssetEnabled,
}
if limits.ProposeAssetEnabledFrom > 0 {
nl.ProposeAssetEnabledFrom = limits.ProposeAssetEnabledFrom
}
if limits.ProposeMarketEnabledFrom > 0 {
nl.ProposeMarketEnabledFrom = limits.ProposeMarketEnabledFrom
}
return nl
default:
continue
}
}
return &vega.NetworkLimits{}
}
// getAssets returns all pending and active assets from the core snapshot.
func (s *snap) getAssets() []*vega.Asset {
assets := []*vega.Asset{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_ActiveAssets:
assets = append(assets, c.GetActiveAssets().Assets...)
case *snapshot.Payload_PendingAssets:
assets = append(assets, c.GetPendingAssets().Assets...)
default:
continue
}
}
return assets
}
// getVegaTime returns the vega time from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getVegaTime() int64 {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_AppState:
return (c.GetAppState().Time / 1000) * 1000
default:
continue
}
}
return 0
}
// getDelegations returns the delegations from the core snapshot.
func (s *snap) getDelegations() []*vega.Delegation {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_DelegationActive:
return c.GetDelegationActive().Delegations
default:
continue
}
}
return []*vega.Delegation{}
}
// getEpoch returns the current epoch information (timestamps)
func (s *snap) getEpoch() *vega.Epoch {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_Epoch:
epoch := c.GetEpoch()
return &vega.Epoch{
Seq: epoch.Seq,
Timestamps: &vega.EpochTimestamps{
StartTime: (epoch.StartTime / 1000) * 1000,
ExpiryTime: (epoch.ExpireTime / 1000) * 1000,
},
}
default:
continue
}
}
return &vega.Epoch{}
}
// getProposals returns all the pending and enacted proposals. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getProposals() []*vega.Proposal {
pMap := map[string]*vega.Proposal{}
proposals := []*vega.Proposal{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_GovernanceActive:
for _, p := range c.GetGovernanceActive().Proposals {
pMap[p.Proposal.Id] = p.Proposal
}
case *snapshot.Payload_GovernanceEnacted:
for _, p := range c.GetGovernanceEnacted().Proposals {
pMap[p.Proposal.Id] = p.Proposal
}
case *snapshot.Payload_GovernanceNode:
proposals = append(proposals, c.GetGovernanceNode().Proposals...)
default:
continue
}
}
for _, p := range pMap {
p.Timestamp = (p.Timestamp / 1000) * 1000
proposals = append(proposals, p)
}
return proposals
}
// getTransfers returns recurring and scheduled transfers from the core snapshot. To make it compatible with datanode, the timestamps are converted to have
// microsecond resolution.
func (s *snap) getTransfers() []*events.Transfer {
transfers := []*events.Transfer{}
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_BankingRecurringTransfers:
transfers = append(transfers, c.GetBankingRecurringTransfers().RecurringTransfers.RecurringTransfers...)
case *snapshot.Payload_BankingScheduledTransfers:
for _, tt := range c.GetBankingScheduledTransfers().TransfersAtTime {
for _, t := range tt.Transfers {
transfers = append(transfers, t.OneoffTransfer)
}
}
default:
continue
}
}
for _, t := range transfers {
t.Timestamp = (t.Timestamp / 1000) * 1000
}
return transfers
}
// getValidators returns information about the current validators and their ranking scores from the core snapshot. The ethereum address gets checksummed.
func (s *snap) getValidators() []*vega.Node {
for _, c := range s.chunk.Data {
switch c.Data.(type) {
case *snapshot.Payload_Topology:
nodes := []*vega.Node{}
for _, u := range c.GetTopology().ValidatorData {
nodes = append(nodes, &vega.Node{
Id: u.ValidatorUpdate.NodeId,
PubKey: u.ValidatorUpdate.VegaPubKey,
TmPubKey: u.ValidatorUpdate.TmPubKey,
EthereumAddress: crypto.EthereumChecksumAddress(u.ValidatorUpdate.EthereumAddress),
InfoUrl: u.ValidatorUpdate.InfoUrl,
Location: u.ValidatorUpdate.Country,
Status: 1,
RankingScore: u.RankingScore,
Name: u.ValidatorUpdate.Name,
AvatarUrl: u.ValidatorUpdate.AvatarUrl,
})
}
return nodes
default:
continue
}
}
return []*vega.Node{}
}
// getPositions is currently unsupported as the core snapshot and datanode have very different abstractions.
// TODO
func (s *snap) getPositions() []*vega.Position {
return []*vega.Position{}
}
// NewSnapshotData deserealises a proto file into snap.
func newSnapshotData(fileName string) (*snap, error) {
jsonFile, err := os.Open(fileName)
if err != nil {
return nil, err
}
defer jsonFile.Close()
bytes, _ := ioutil.ReadAll(jsonFile)
chunk := snapshot.Chunk{}
proto.Unmarshal(bytes, &chunk)
return &snap{chunk: &chunk}, nil
}