-
Notifications
You must be signed in to change notification settings - Fork 182
/
keeper.go
449 lines (387 loc) · 13.1 KB
/
keeper.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
package token
import (
"bytes"
"fmt"
"sort"
"strings"
ethcrypto "github.com/ethereum/go-ethereum/crypto"
"github.com/okex/exchain/libs/cosmos-sdk/codec"
sdk "github.com/okex/exchain/libs/cosmos-sdk/types"
"github.com/okex/exchain/libs/cosmos-sdk/x/bank"
app "github.com/okex/exchain/app/types"
"github.com/okex/exchain/x/params"
"github.com/okex/exchain/x/token/types"
"github.com/okex/exchain/libs/tendermint/crypto/tmhash"
)
// Keeper maintains the link to data storage and exposes getter/setter methods for the various parts of the state machine
type Keeper struct {
bankKeeper bank.Keeper
supplyKeeper SupplyKeeper
accountKeeper types.AccountKeeper
feeCollectorName string // name of the FeeCollector ModuleAccount
// The reference to the Paramstore to get and set gov specific params
paramSpace params.Subspace
tokenStoreKey sdk.StoreKey // Unexposed key to access name store from sdk.Context
lockStoreKey sdk.StoreKey
//TokenPairNewSignalChan chan types.TokenPair
cdc *codec.Codec // The wire codec for binary encoding/decoding.
enableBackend bool // whether open backend plugin
// cache data in memory to avoid marshal/unmarshal too frequently
// reset cache data in BeginBlock
cache *Cache
}
// NewKeeper creates a new token keeper
func NewKeeper(bankKeeper bank.Keeper, paramSpace params.Subspace,
feeCollectorName string, supplyKeeper SupplyKeeper, tokenStoreKey, lockStoreKey sdk.StoreKey, cdc *codec.Codec, enableBackend bool, ak types.AccountKeeper) Keeper {
k := Keeper{
bankKeeper: bankKeeper,
paramSpace: paramSpace.WithKeyTable(types.ParamKeyTable()),
feeCollectorName: feeCollectorName,
supplyKeeper: supplyKeeper,
accountKeeper: ak,
tokenStoreKey: tokenStoreKey,
lockStoreKey: lockStoreKey,
cdc: cdc,
enableBackend: enableBackend,
cache: NewCache(),
}
return k
}
// nolint
func (k Keeper) ResetCache(ctx sdk.Context) {
k.cache.reset()
}
// nolint
func (k Keeper) GetTokenInfo(ctx sdk.Context, symbol string) types.Token {
var token types.Token
store := ctx.KVStore(k.tokenStoreKey)
bz := store.Get(types.GetTokenAddress(symbol))
if bz == nil {
return token
}
k.cdc.MustUnmarshalBinaryBare(bz, &token)
return token
}
// nolint
func (k Keeper) GetTokenTotalSupply(ctx sdk.Context, symbol string) sdk.Dec {
return k.supplyKeeper.GetSupplyByDenom(ctx, symbol)
}
// TokenExist checks whether the token with symbol exist or not
func (k Keeper) TokenExist(ctx sdk.Context, symbol string) bool {
store := ctx.KVStore(k.tokenStoreKey)
return store.Has(types.GetTokenAddress(symbol))
}
// nolint
func (k Keeper) GetTokensInfo(ctx sdk.Context) (tokens []types.Token) {
store := ctx.KVStore(k.tokenStoreKey)
iter := sdk.KVStorePrefixIterator(store, types.TokenKey)
defer iter.Close()
for iter.Valid() {
var token types.Token
tokenBytes := iter.Value()
k.cdc.MustUnmarshalBinaryBare(tokenBytes, &token)
tokens = append(tokens, token)
iter.Next()
}
return tokens
}
// GetUserTokensInfo gets tokens info by owner address
func (k Keeper) GetUserTokensInfo(ctx sdk.Context, owner sdk.AccAddress) (tokens []types.Token) {
userTokenPrefix := types.GetUserTokenPrefix(owner)
userTokenPrefixLen := len(userTokenPrefix)
store := ctx.KVStore(k.tokenStoreKey)
iter := sdk.KVStorePrefixIterator(store, userTokenPrefix)
defer iter.Close()
for iter.Valid() {
userTokenKey := iter.Key()
symbol := string(userTokenKey[userTokenPrefixLen:])
tokens = append(tokens, k.GetTokenInfo(ctx, symbol))
iter.Next()
}
return tokens
}
// GetCurrenciesInfo returns all of the currencies info
func (k Keeper) GetCurrenciesInfo(ctx sdk.Context) (currencies []types.Currency) {
store := ctx.KVStore(k.tokenStoreKey)
iter := sdk.KVStorePrefixIterator(store, types.TokenKey)
defer iter.Close()
//iter := store.Iterator(nil, nil)
for iter.Valid() {
var token types.Token
tokenBytes := iter.Value()
k.cdc.MustUnmarshalBinaryBare(tokenBytes, &token)
supply := k.supplyKeeper.GetSupplyByDenom(ctx, token.Symbol)
currencies = append(currencies,
types.Currency{
Description: token.Description,
Symbol: token.Symbol,
TotalSupply: supply,
})
iter.Next()
}
return currencies
}
// DeleteUserToken deletes token by user address and symbol
func (k Keeper) DeleteUserToken(ctx sdk.Context, owner sdk.AccAddress, symbol string) {
store := ctx.KVStore(k.tokenStoreKey)
store.Delete(types.GetUserTokenKey(owner, symbol))
}
// nolint
func (k Keeper) NewToken(ctx sdk.Context, token types.Token) {
// save token info
store := ctx.KVStore(k.tokenStoreKey)
store.Set(types.GetTokenAddress(token.Symbol), k.cdc.MustMarshalBinaryBare(token))
store.Set(types.GetUserTokenKey(token.Owner, token.Symbol), []byte{})
// update token number
tokenNumber := k.getTokenNum(ctx)
b := k.cdc.MustMarshalBinaryBare(tokenNumber + 1)
store.Set(types.TokenNumberKey, b)
}
func (k Keeper) UpdateToken(ctx sdk.Context, token types.Token) {
store := ctx.KVStore(k.tokenStoreKey)
store.Set(types.GetTokenAddress(token.Symbol), k.cdc.MustMarshalBinaryBare(token))
}
func (k Keeper) IsContractAddress(ctx sdk.Context, addr sdk.AccAddress) bool {
acc := k.accountKeeper.GetAccount(ctx, addr)
if acc != nil {
ethAcc, ok := acc.(*app.EthAccount)
if ok {
return bytes.Compare(ethAcc.CodeHash, ethcrypto.Keccak256(nil)) != 0
}
}
return false
}
// SendCoinsFromAccountToAccount - send token from one account to another account
func (k Keeper) SendCoinsFromAccountToAccount(ctx sdk.Context, from, to sdk.AccAddress, amt sdk.SysCoins) error {
if k.bankKeeper.BlacklistedAddr(to) {
return types.ErrBlockedRecipient(to.String())
}
if k.IsContractAddress(ctx, to) {
return types.ErrBlockedContractRecipient(to.String())
}
return k.bankKeeper.SendCoins(ctx, from, to, amt)
}
// nolint
func (k Keeper) LockCoins(ctx sdk.Context, addr sdk.AccAddress, coins sdk.SysCoins, lockCoinsType int) error {
if err := k.supplyKeeper.SendCoinsFromAccountToModule(ctx, addr, types.ModuleName, coins); err != nil {
return types.ErrSendCoinsFromAccountToModuleFailed(err.Error())
}
// update lock coins
return k.updateLockedCoins(ctx, addr, coins, true, lockCoinsType)
}
// nolint
func (k Keeper) updateLockedCoins(ctx sdk.Context, addr sdk.AccAddress, coins sdk.SysCoins, doAdd bool, lockCoinsType int) error {
var key []byte
switch lockCoinsType {
case types.LockCoinsTypeQuantity:
key = types.GetLockAddress(addr.Bytes())
case types.LockCoinsTypeFee:
key = types.GetLockFeeAddress(addr.Bytes())
default:
return types.ErrUnrecognizedLockCoinsType(lockCoinsType)
}
var newCoins sdk.SysCoins
var oldCoins sdk.SysCoins
store := ctx.KVStore(k.lockStoreKey)
coinsBytes := store.Get(key)
if doAdd {
// lock coins
if coinsBytes == nil {
newCoins = coins
} else {
k.cdc.MustUnmarshalBinaryBare(coinsBytes, &oldCoins)
newCoins = oldCoins.Add2(coins)
}
} else {
// unlock coins
if coinsBytes == nil {
return types.ErrFailedToUnlockAddress(coins.String(), addr.String())
}
k.cdc.MustUnmarshalBinaryBare(coinsBytes, &oldCoins)
var isNegative bool
newCoins, isNegative = oldCoins.SafeSub(coins)
if isNegative {
return types.ErrFailedToUnlockAddress(coins.String(), addr.String())
}
}
sort.Sort(newCoins)
if len(newCoins) > 0 {
store.Set(key, k.cdc.MustMarshalBinaryBare(newCoins))
} else {
store.Delete(key)
}
return nil
}
// nolint
func (k Keeper) UnlockCoins(ctx sdk.Context, addr sdk.AccAddress, coins sdk.SysCoins, lockCoinsType int) error {
// update lock coins
if err := k.updateLockedCoins(ctx, addr, coins, false, lockCoinsType); err != nil {
return err
}
// update account
if err := k.supplyKeeper.SendCoinsFromModuleToAccount(ctx, types.ModuleName, addr, coins); err != nil {
return types.ErrSendCoinsFromModuleToAccountFailed(err.Error())
}
return nil
}
// GetLockCoins gets locked coins by address
func (k Keeper) GetLockedCoins(ctx sdk.Context, addr sdk.AccAddress) (coins sdk.SysCoins) {
store := ctx.KVStore(k.lockStoreKey)
coinsBytes := store.Get(types.GetLockAddress(addr.Bytes()))
if coinsBytes == nil {
return coins
}
k.cdc.MustUnmarshalBinaryBare(coinsBytes, &coins)
return coins
}
// GetAllLockCoins iterates KVStore and gets all of the locked coins
func (k Keeper) GetAllLockedCoins(ctx sdk.Context) (locks []types.AccCoins) {
store := ctx.KVStore(k.lockStoreKey)
iter := sdk.KVStorePrefixIterator(store, types.LockKey)
defer iter.Close()
for iter.Valid() {
var accCoins types.AccCoins
accCoins.Acc = iter.Key()[len(types.LockKey):]
coinsBytes := iter.Value()
var coins sdk.SysCoins
k.cdc.MustUnmarshalBinaryBare(coinsBytes, &coins)
accCoins.Coins = coins
locks = append(locks, accCoins)
iter.Next()
}
return locks
}
// IterateAllDeposits iterates over the all the stored lock fee and performs a callback function
func (k Keeper) IterateLockedFees(ctx sdk.Context, cb func(acc sdk.AccAddress, coins sdk.SysCoins) (stop bool)) {
store := ctx.KVStore(k.lockStoreKey)
iter := sdk.KVStorePrefixIterator(store, types.LockedFeeKey)
defer iter.Close()
for ; iter.Valid(); iter.Next() {
acc := iter.Key()[len(types.LockKey):]
var coins sdk.SysCoins
k.cdc.MustUnmarshalBinaryBare(iter.Value(), &coins)
if cb(acc, coins) {
break
}
}
}
// BalanceAccount is ONLY expected by the order module to settle an order where outputCoins
// is used to exchange inputCoins
func (k Keeper) BalanceAccount(ctx sdk.Context, addr sdk.AccAddress, outputCoins sdk.SysCoins,
inputCoins sdk.SysCoins) (err error) {
if !outputCoins.IsZero() {
if err = k.updateLockedCoins(ctx, addr, outputCoins, false, types.LockCoinsTypeQuantity); err != nil {
return types.ErrUpdateLockedCoins()
}
}
if !inputCoins.IsZero() {
return k.supplyKeeper.SendCoinsFromModuleToAccount(ctx, types.ModuleName, addr, inputCoins)
}
return nil
}
// nolint
func (k Keeper) GetCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.SysCoins {
return k.bankKeeper.GetCoins(ctx, addr)
}
// GetParams gets inflation params from the global param store
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
k.paramSpace.GetParamSet(ctx, ¶ms)
return params
}
// SetParams set inflation params from the global param store
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
k.paramSpace.SetParamSet(ctx, ¶ms)
}
// GetCoinsInfo gets all of the coin info by addr
func (k Keeper) GetCoinsInfo(ctx sdk.Context, addr sdk.AccAddress) (coinsInfo types.CoinsInfo) {
availableCoins := k.GetCoins(ctx, addr)
lockedCoins := k.GetLockedCoins(ctx, addr)
// merge coins
coinsInfo = types.MergeCoinInfo(availableCoins, lockedCoins)
return coinsInfo
}
// GetFeeDetailList gets fee detail list from cache
func (k Keeper) GetFeeDetailList() []*FeeDetail {
return k.cache.getFeeDetailList()
}
// nolint
func (k Keeper) AddFeeDetail(ctx sdk.Context, from string, fee sdk.SysCoins, feeType string, receiver string) {
if k.enableBackend {
feeDetail := &FeeDetail{
Address: from,
Fee: fee.String(),
FeeType: feeType,
Timestamp: ctx.BlockHeader().Time.Unix(),
Receiver: receiver,
}
k.cache.addFeeDetail(feeDetail)
}
}
func (k Keeper) getNumKeys(ctx sdk.Context) (tokenStoreKeyNum, lockStoreKeyNum int64) {
{
store := ctx.KVStore(k.tokenStoreKey)
iter := store.Iterator(nil, nil)
defer iter.Close()
for ; iter.Valid(); iter.Next() {
tokenStoreKeyNum++
}
}
{
store := ctx.KVStore(k.lockStoreKey)
iter := store.Iterator(nil, nil)
defer iter.Close()
for ; iter.Valid(); iter.Next() {
lockStoreKeyNum++
}
}
return
}
func (k Keeper) getTokenNum(ctx sdk.Context) (tokenNumber uint64) {
store := ctx.KVStore(k.tokenStoreKey)
b := store.Get(types.TokenNumberKey)
if b != nil {
k.cdc.MustUnmarshalBinaryBare(b, &tokenNumber)
}
return
}
// addTokenSuffix add token suffix
func addTokenSuffix(ctx sdk.Context, keeper Keeper, originalSymbol string) (name string, valid bool) {
hash := fmt.Sprintf("%x", tmhash.Sum(ctx.TxBytes()))
var i int
for i = len(hash)/3 - 1; i >= 0; i-- {
name = originalSymbol + "-" + strings.ToLower(hash[3*i:3*i+3])
// check token name valid
if sdk.ValidateDenom(name) != nil {
return "", false
}
if !keeper.TokenExist(ctx, name) {
break
}
}
if i == -1 {
return "", false
}
return name, true
}
// GetConfirmOwnership returns ownership confirming information
func (k Keeper) GetConfirmOwnership(ctx sdk.Context, symbol string) (confirmOwnership *types.ConfirmOwnership, exist bool) {
store := ctx.KVStore(k.tokenStoreKey)
bytes := store.Get(types.GetConfirmOwnershipKey(symbol))
if bytes == nil {
return nil, false
}
k.cdc.MustUnmarshalBinaryBare(bytes, &confirmOwnership)
return confirmOwnership, true
}
// SetConfirmOwnership sets ownership confirming information to db
func (k Keeper) SetConfirmOwnership(ctx sdk.Context, confirmOwnership *types.ConfirmOwnership) {
store := ctx.KVStore(k.tokenStoreKey)
key := types.GetConfirmOwnershipKey(confirmOwnership.Symbol)
store.Set(key, k.cdc.MustMarshalBinaryBare(confirmOwnership))
}
// DeleteConfirmOwnership deletes ownership confirming information from db
func (k Keeper) DeleteConfirmOwnership(ctx sdk.Context, symbol string) {
store := ctx.KVStore(k.tokenStoreKey)
key := types.GetConfirmOwnershipKey(symbol)
store.Delete(key)
}