-
Notifications
You must be signed in to change notification settings - Fork 462
/
circulating_supply.go
444 lines (368 loc) · 15.5 KB
/
circulating_supply.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
package chain
import (
"context"
"github.com/filecoin-project/venus/pkg/constants"
"github.com/filecoin-project/venus/pkg/types"
"sync"
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
"github.com/ipfs/go-cid"
cbornode "github.com/ipfs/go-ipld-cbor"
xerrors "github.com/pkg/errors"
// Used for genesis.
msig0 "github.com/filecoin-project/specs-actors/actors/builtin/multisig"
"github.com/filecoin-project/venus/pkg/config"
"github.com/filecoin-project/venus/pkg/specactors/adt"
"github.com/filecoin-project/venus/pkg/specactors/builtin"
"github.com/filecoin-project/venus/pkg/specactors/builtin/market"
"github.com/filecoin-project/venus/pkg/specactors/builtin/power"
"github.com/filecoin-project/venus/pkg/specactors/builtin/reward"
"github.com/filecoin-project/venus/pkg/state/tree"
"github.com/filecoin-project/venus/pkg/util/blockstoreutil"
)
type genesisReader interface {
GetGenesisBlock(ctx context.Context) (*types.BlockHeader, error)
}
//CirculatingSupply circulation information, including mining, public offering, private placement, release, combustion, mortgage, circulation,
type CirculatingSupply struct {
FilVested abi.TokenAmount
FilMined abi.TokenAmount
FilBurnt abi.TokenAmount
FilLocked abi.TokenAmount
FilCirculating abi.TokenAmount
FilReserveDisbursed abi.TokenAmount
}
//CirculatingSupplyCalculator used to calculate the funds at a specific block height
type CirculatingSupplyCalculator struct {
bstore blockstoreutil.Blockstore
genesisReader genesisReader
// info about the Accounts in the genesis state
preIgnitionVesting []msig0.State
postIgnitionVesting []msig0.State
postCalicoVesting []msig0.State
genesisPledge abi.TokenAmount
genesisMarketFunds abi.TokenAmount
genesisMsigLk sync.Mutex
upgradeConfig *config.ForkUpgradeConfig
}
//NewCirculatingSupplyCalculator create new circulating supply calculator
func NewCirculatingSupplyCalculator(bstore blockstoreutil.Blockstore, genesisReader genesisReader, upgradeConfig *config.ForkUpgradeConfig) *CirculatingSupplyCalculator {
return &CirculatingSupplyCalculator{bstore: bstore, genesisReader: genesisReader, upgradeConfig: upgradeConfig}
}
//GetCirculatingSupplyDetailed query contract and calculate circulation status at specific height and tree state
func (caculator *CirculatingSupplyCalculator) GetCirculatingSupplyDetailed(ctx context.Context, height abi.ChainEpoch, st tree.Tree) (CirculatingSupply, error) {
caculator.genesisMsigLk.Lock()
defer caculator.genesisMsigLk.Unlock()
//setup genesis asset information
if caculator.preIgnitionVesting == nil || caculator.genesisPledge.IsZero() || caculator.genesisMarketFunds.IsZero() {
err := caculator.setupGenesisVestingSchedule(ctx)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to setup pre-ignition vesting schedule: %v", err)
}
}
if caculator.postIgnitionVesting == nil {
err := caculator.setupPostIgnitionVesting(ctx)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to setup post-ignition vesting schedule: %v", err)
}
}
if caculator.postCalicoVesting == nil {
err := caculator.setupPostCalicoVesting(ctx)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to setup post-calico vesting schedule: %v", err)
}
}
filVested, err := caculator.GetFilVested(ctx, height, st)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to calculate filVested: %v", err)
}
filReserveDisbursed := big.Zero()
if height > caculator.upgradeConfig.UpgradeAssemblyHeight {
filReserveDisbursed, err = caculator.GetFilReserveDisbursed(ctx, st)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to calculate filReserveDisbursed: %v", err)
}
}
filMined, err := GetFilMined(ctx, st)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to calculate filMined: %v", err)
}
filBurnt, err := GetFilBurnt(ctx, st)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to calculate filBurnt: %v", err)
}
filLocked, err := caculator.GetFilLocked(ctx, st)
if err != nil {
return CirculatingSupply{}, xerrors.Errorf("failed to calculate filLocked: %v", err)
}
ret := big.Add(filVested, filMined)
ret = big.Add(ret, filReserveDisbursed)
ret = big.Sub(ret, filBurnt)
ret = big.Sub(ret, filLocked)
if ret.LessThan(big.Zero()) {
ret = big.Zero()
}
return CirculatingSupply{
FilVested: filVested,
FilMined: filMined,
FilBurnt: filBurnt,
FilLocked: filLocked,
FilCirculating: ret,
FilReserveDisbursed: filReserveDisbursed,
}, nil
}
/*func (c *Expected) processBlock(ctx context.Context, ts *block.TipSet) (cid.Cid, []types.MessageReceipt, error) {
var secpMessages [][]*types.SignedMessage
var blsMessages [][]*types.UnsignedMessage
for i := 0; i < ts.Len(); i++ {
blk := ts.At(i)
secpMsgs, blsMsgs, err := c.messageStore.LoadMetaMessages(ctx, blk.Messages.Cid)
if err != nil {
return cid.Undef, []types.MessageReceipt{}, xerrors.Wrapf(err, "syncing tip %s failed loading message list %s for block %s", ts.Key(), blk.Messages, blk.Cid())
}
blsMessages = append(blsMessages, blsMsgs)
secpMessages = append(secpMessages, secpMsgs)
}
vms := vm.NewStorage(c.bstore)
priorState, err := state.LoadState(ctx, vms, ts.At(0).StateRoot.Cid)
if err != nil {
return cid.Undef, []types.MessageReceipt{}, err
}
var newState state.Tree
newState, receipts, err := c.runMessages(ctx, priorState, vms, ts, blsMessages, secpMessages)
if err != nil {
return cid.Undef, []types.MessageReceipt{}, err
}
err = vms.Flush()
if err != nil {
return cid.Undef, []types.MessageReceipt{}, err
}
root, err := newState.Flush(ctx)
if err != nil {
return cid.Undef, []types.MessageReceipt{}, err
}
return root, receipts, err
}
*/
// sets up information about the vesting schedule
func (caculator *CirculatingSupplyCalculator) setupGenesisVestingSchedule(ctx context.Context) error {
gb, err := caculator.genesisReader.GetGenesisBlock(ctx)
if err != nil {
return xerrors.Errorf("getting genesis block: %v", err)
}
gts, err := types.NewTipSet(gb)
if err != nil {
return xerrors.Errorf("getting genesis tipset: %v", err)
}
cst := cbornode.NewCborStore(caculator.bstore)
sTree, err := tree.LoadState(ctx, cst, gts.At(0).ParentStateRoot)
if err != nil {
return xerrors.Errorf("loading state tree: %v", err)
}
gmf, err := getFilMarketLocked(ctx, sTree)
if err != nil {
return xerrors.Errorf("setting up genesis market funds: %v", err)
}
gp, err := getFilPowerLocked(ctx, sTree)
if err != nil {
return xerrors.Errorf("setting up genesis pledge: %v", err)
}
caculator.genesisMarketFunds = gmf
caculator.genesisPledge = gp
totalsByEpoch := make(map[abi.ChainEpoch]abi.TokenAmount)
// 6 months
sixMonths := abi.ChainEpoch(183 * builtin.EpochsInDay)
totalsByEpoch[sixMonths] = big.NewInt(49_929_341)
totalsByEpoch[sixMonths] = big.Add(totalsByEpoch[sixMonths], big.NewInt(32_787_700))
// 1 year
oneYear := abi.ChainEpoch(365 * builtin.EpochsInDay)
totalsByEpoch[oneYear] = big.NewInt(22_421_712)
// 2 years
twoYears := abi.ChainEpoch(2 * 365 * builtin.EpochsInDay)
totalsByEpoch[twoYears] = big.NewInt(7_223_364)
// 3 years
threeYears := abi.ChainEpoch(3 * 365 * builtin.EpochsInDay)
totalsByEpoch[threeYears] = big.NewInt(87_637_883)
// 6 years
sixYears := abi.ChainEpoch(6 * 365 * builtin.EpochsInDay)
totalsByEpoch[sixYears] = big.NewInt(100_000_000)
totalsByEpoch[sixYears] = big.Add(totalsByEpoch[sixYears], big.NewInt(300_000_000))
caculator.preIgnitionVesting = make([]msig0.State, 0, len(totalsByEpoch))
for k, v := range totalsByEpoch {
ns := msig0.State{
InitialBalance: v,
UnlockDuration: k,
PendingTxns: cid.Undef,
}
caculator.preIgnitionVesting = append(caculator.preIgnitionVesting, ns)
}
return nil
}
// sets up information about the vesting schedule post the ignition upgrade
func (caculator *CirculatingSupplyCalculator) setupPostIgnitionVesting(ctx context.Context) error {
totalsByEpoch := make(map[abi.ChainEpoch]abi.TokenAmount)
// 6 months
sixMonths := abi.ChainEpoch(183 * builtin.EpochsInDay)
totalsByEpoch[sixMonths] = big.NewInt(49_929_341)
totalsByEpoch[sixMonths] = big.Add(totalsByEpoch[sixMonths], big.NewInt(32_787_700))
// 1 year
oneYear := abi.ChainEpoch(365 * builtin.EpochsInDay)
totalsByEpoch[oneYear] = big.NewInt(22_421_712)
// 2 years
twoYears := abi.ChainEpoch(2 * 365 * builtin.EpochsInDay)
totalsByEpoch[twoYears] = big.NewInt(7_223_364)
// 3 years
threeYears := abi.ChainEpoch(3 * 365 * builtin.EpochsInDay)
totalsByEpoch[threeYears] = big.NewInt(87_637_883)
// 6 years
sixYears := abi.ChainEpoch(6 * 365 * builtin.EpochsInDay)
totalsByEpoch[sixYears] = big.NewInt(100_000_000)
totalsByEpoch[sixYears] = big.Add(totalsByEpoch[sixYears], big.NewInt(300_000_000))
caculator.postIgnitionVesting = make([]msig0.State, 0, len(totalsByEpoch))
for k, v := range totalsByEpoch {
ns := msig0.State{
// In the pre-ignition logic, we incorrectly set this value in Fil, not attoFil, an off-by-10^18 error
InitialBalance: big.Mul(v, big.NewInt(int64(constants.FilecoinPrecision))),
UnlockDuration: k,
PendingTxns: cid.Undef,
// In the pre-ignition logic, the start epoch was 0. This changes in the fork logic of the Ignition upgrade itself.
StartEpoch: caculator.upgradeConfig.UpgradeLiftoffHeight,
}
caculator.postIgnitionVesting = append(caculator.postIgnitionVesting, ns)
}
return nil
}
// sets up information about the vesting schedule post the calico upgrade
func (caculator *CirculatingSupplyCalculator) setupPostCalicoVesting(ctx context.Context) error {
totalsByEpoch := make(map[abi.ChainEpoch]abi.TokenAmount)
// 0 days
zeroDays := abi.ChainEpoch(0)
totalsByEpoch[zeroDays] = big.NewInt(10_632_000)
// 6 months
sixMonths := abi.ChainEpoch(183 * builtin.EpochsInDay)
totalsByEpoch[sixMonths] = big.NewInt(19_015_887)
totalsByEpoch[sixMonths] = big.Add(totalsByEpoch[sixMonths], big.NewInt(32_787_700))
// 1 year
oneYear := abi.ChainEpoch(365 * builtin.EpochsInDay)
totalsByEpoch[oneYear] = big.NewInt(22_421_712)
totalsByEpoch[oneYear] = big.Add(totalsByEpoch[oneYear], big.NewInt(9_400_000))
// 2 years
twoYears := abi.ChainEpoch(2 * 365 * builtin.EpochsInDay)
totalsByEpoch[twoYears] = big.NewInt(7_223_364)
// 3 years
threeYears := abi.ChainEpoch(3 * 365 * builtin.EpochsInDay)
totalsByEpoch[threeYears] = big.NewInt(87_637_883)
totalsByEpoch[threeYears] = big.Add(totalsByEpoch[threeYears], big.NewInt(898_958))
// 6 years
sixYears := abi.ChainEpoch(6 * 365 * builtin.EpochsInDay)
totalsByEpoch[sixYears] = big.NewInt(100_000_000)
totalsByEpoch[sixYears] = big.Add(totalsByEpoch[sixYears], big.NewInt(300_000_000))
totalsByEpoch[sixYears] = big.Add(totalsByEpoch[sixYears], big.NewInt(9_805_053))
caculator.postCalicoVesting = make([]msig0.State, 0, len(totalsByEpoch))
for k, v := range totalsByEpoch {
ns := msig0.State{
InitialBalance: big.Mul(v, big.NewInt(int64(constants.FilecoinPrecision))),
UnlockDuration: k,
PendingTxns: cid.Undef,
StartEpoch: caculator.upgradeConfig.UpgradeLiftoffHeight,
}
caculator.postCalicoVesting = append(caculator.postCalicoVesting, ns)
}
return nil
}
// GetVestedFunds returns all funds that have "left" actors that are in the genesis state:
// - For Multisigs, it counts the actual amounts that have vested at the given epoch
// - For Accounts, it counts max(currentBalance - genesisBalance, 0).
func (caculator *CirculatingSupplyCalculator) GetFilVested(ctx context.Context, height abi.ChainEpoch, st tree.Tree) (abi.TokenAmount, error) {
vf := big.Zero()
if height <= caculator.upgradeConfig.UpgradeIgnitionHeight {
for _, v := range caculator.preIgnitionVesting {
au := big.Sub(v.InitialBalance, v.AmountLocked(height))
vf = big.Add(vf, au)
}
} else if height <= caculator.upgradeConfig.UpgradeCalicoHeight {
for _, v := range caculator.postIgnitionVesting {
// In the pre-ignition logic, we simply called AmountLocked(height), assuming startEpoch was 0.
// The start epoch changed in the Ignition upgrade.
au := big.Sub(v.InitialBalance, v.AmountLocked(height-v.StartEpoch))
vf = big.Add(vf, au)
}
} else {
for _, v := range caculator.postCalicoVesting {
// In the pre-ignition logic, we simply called AmountLocked(height), assuming startEpoch was 0.
// The start epoch changed in the Ignition upgrade.
au := big.Sub(v.InitialBalance, v.AmountLocked(height-v.StartEpoch))
vf = big.Add(vf, au)
}
}
// After UpgradeAssemblyHeight these funds are accounted for in GetFilReserveDisbursed
if height <= caculator.upgradeConfig.UpgradeAssemblyHeight {
// continue to use preIgnitionGenInfos, nothing changed at the Ignition epoch
vf = big.Add(vf, caculator.genesisPledge)
// continue to use preIgnitionGenInfos, nothing changed at the Ignition epoch
vf = big.Add(vf, caculator.genesisMarketFunds)
}
return vf, nil
}
func (caculator *CirculatingSupplyCalculator) GetFilReserveDisbursed(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
ract, found, err := st.GetActor(ctx, builtin.ReserveAddress)
if !found || err != nil {
return big.Zero(), xerrors.Errorf("failed to get reserve actor: %v", err)
}
// If money enters the reserve actor, this could lead to a negative term
return big.Sub(big.NewFromGo(constants.InitialFilReserved), ract.Balance), nil
}
//GetFilMined query reward contract to get amount of mined fil
func GetFilMined(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
ractor, found, err := st.GetActor(ctx, reward.Address)
if !found || err != nil {
return big.Zero(), xerrors.Errorf("failed to load reward actor state: %v", err)
}
rst, err := reward.Load(adt.WrapStore(ctx, st.GetStore()), ractor)
if err != nil {
return big.Zero(), err
}
return rst.TotalStoragePowerReward()
}
//GetFilBurnt query burnt contract to get amount of burnt fil
func GetFilBurnt(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
burnt, found, err := st.GetActor(ctx, builtin.BurntFundsActorAddr)
if !found || err != nil {
return big.Zero(), xerrors.Errorf("failed to load burnt actor: %v", err)
}
return burnt.Balance, nil
}
//GetFilLocked query the market contract and power contract to get the amount of locked fils
func (caculator *CirculatingSupplyCalculator) GetFilLocked(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
filMarketLocked, err := getFilMarketLocked(ctx, st)
if err != nil {
return big.Zero(), xerrors.Errorf("failed to get filMarketLocked: %v", err)
}
filPowerLocked, err := getFilPowerLocked(ctx, st)
if err != nil {
return big.Zero(), xerrors.Errorf("failed to get filPowerLocked: %v", err)
}
return big.Add(filMarketLocked, filPowerLocked), nil
}
func getFilMarketLocked(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
act, found, err := st.GetActor(ctx, market.Address)
if !found || err != nil {
return big.Zero(), xerrors.Errorf("failed to load market actor: %v", err)
}
mst, err := market.Load(adt.WrapStore(ctx, st.GetStore()), act)
if err != nil {
return big.Zero(), xerrors.Errorf("failed to load market state: %v", err)
}
return mst.TotalLocked()
}
func getFilPowerLocked(ctx context.Context, st tree.Tree) (abi.TokenAmount, error) {
pactor, found, err := st.GetActor(ctx, power.Address)
if !found || err != nil {
return big.Zero(), xerrors.Errorf("failed to load power actor: %v", err)
}
pst, err := power.Load(adt.WrapStore(ctx, st.GetStore()), pactor)
if err != nil {
return big.Zero(), xerrors.Errorf("failed to load power state: %v", err)
}
return pst.TotalLocked()
}