forked from bnb-chain/greenfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeeper.go
67 lines (56 loc) · 1.62 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
package keeper
import (
"fmt"
"cosmossdk.io/errors"
"github.com/cometbft/cometbft/libs/log"
"github.com/cosmos/cosmos-sdk/bsc/rlp"
"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/bnb-chain/greenfield/x/bridge/types"
)
type (
Keeper struct {
cdc codec.BinaryCodec
storeKey storetypes.StoreKey
bankKeeper types.BankKeeper
stakingKeeper types.StakingKeeper
crossChainKeeper types.CrossChainKeeper
authority string
}
)
func NewKeeper(
cdc codec.BinaryCodec,
storeKey storetypes.StoreKey,
bankKeeper types.BankKeeper,
stakingKeepr types.StakingKeeper,
crossChainKeeper types.CrossChainKeeper,
authority string,
) *Keeper {
return &Keeper{
cdc: cdc,
storeKey: storeKey,
bankKeeper: bankKeeper,
stakingKeeper: stakingKeepr,
crossChainKeeper: crossChainKeeper,
authority: authority,
}
}
func (k Keeper) GetAuthority() string {
return k.authority
}
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
return ctx.Logger().With("module", fmt.Sprintf("x/%s", types.ModuleName))
}
func (k Keeper) GetRefundTransferInPayload(transferInClaim *types.TransferInSynPackage, refundReason uint32) ([]byte, error) {
refundPackage := &types.TransferInRefundPackage{
RefundAddress: transferInClaim.RefundAddress,
RefundAmount: transferInClaim.Amount,
RefundReason: refundReason,
}
encodedBytes, err := rlp.EncodeToBytes(refundPackage)
if err != nil {
return nil, errors.Wrapf(types.ErrInvalidPackage, "encode refund package error")
}
return encodedBytes, nil
}