-
Notifications
You must be signed in to change notification settings - Fork 212
/
keeper.go
84 lines (64 loc) · 2.02 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
package keeper
import (
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
types "github.com/akash-network/akash-api/go/node/take/v1beta3"
)
type IKeeper interface {
StoreKey() sdk.StoreKey
Codec() codec.BinaryCodec
GetParams(ctx sdk.Context) (params types.Params)
SetParams(ctx sdk.Context, params types.Params)
SubtractFees(ctx sdk.Context, amt sdk.Coin) (sdk.Coin, sdk.Coin, error)
}
// Keeper of the deployment store
type Keeper struct {
skey sdk.StoreKey
cdc codec.BinaryCodec
pspace paramtypes.Subspace
}
// NewKeeper creates and returns an instance for deployment keeper
func NewKeeper(cdc codec.BinaryCodec, skey sdk.StoreKey, pspace paramtypes.Subspace) IKeeper {
if !pspace.HasKeyTable() {
pspace = pspace.WithKeyTable(types.ParamKeyTable())
}
return Keeper{
skey: skey,
cdc: cdc,
pspace: pspace,
}
}
// Codec returns keeper codec
func (k Keeper) Codec() codec.BinaryCodec {
return k.cdc
}
func (k Keeper) StoreKey() sdk.StoreKey {
return k.skey
}
// GetParams returns the total set of deployment parameters.
func (k Keeper) GetParams(ctx sdk.Context) types.Params {
var params types.Params
k.pspace.GetParamSet(ctx, ¶ms)
return params
}
// SetParams sets the deployment parameters to the paramspace.
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
k.pspace.SetParamSet(ctx, ¶ms)
}
func (k Keeper) SubtractFees(ctx sdk.Context, amt sdk.Coin) (sdk.Coin, sdk.Coin, error) {
topline := sdk.NewDecCoinFromCoin(amt)
rate := k.findRate(ctx, topline.GetDenom())
fees := topline.Amount.Mul(rate).TruncateInt()
earnings := amt.SubAmount(fees)
return earnings, sdk.NewCoin(amt.GetDenom(), fees), nil
}
func (k Keeper) findRate(ctx sdk.Context, denom string) sdk.Dec {
params := k.GetParams(ctx)
rate, ok := params.DenomTakeRates[denom]
if !ok {
rate = params.DefaultTakeRate
}
// return percentage.
return sdk.NewDecFromInt(sdk.NewIntFromUint64(uint64(rate))).Quo(sdk.NewDec(100))
}