-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fee Middleware: Escrow logic #465
Changes from 8 commits
435efc7
8f2c51a
a410af6
0e6823f
f41e520
e4bd49a
ca7f4e2
6a5add7
535e2c6
5bd0e32
31fcee3
487f78d
f25932f
38566bc
dd0044b
5b4a395
c9af582
d325146
ea9b30b
ac7584f
c44a81c
a8c3cff
4f490ea
f1fde1d
eeb4376
4612bf2
3494a0f
f4c37e6
0b733ab
2be4ab5
cb2cbc3
66454c6
06d4c25
f336ca7
8e2eb8f
52fa63e
0587a3c
63e7a1a
a40159f
f379aaf
2f649a8
b100ee0
b19ebd2
a51e2ff
bbfd8d7
6640660
4610c99
bec52c0
2c9185c
f4de334
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,128 @@ | ||||||
package keeper | ||||||
|
||||||
import ( | ||||||
"fmt" | ||||||
|
||||||
sdk "github.com/cosmos/cosmos-sdk/types" | ||||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" | ||||||
|
||||||
"github.com/cosmos/ibc-go/modules/apps/29-fee/types" | ||||||
channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" | ||||||
) | ||||||
|
||||||
// TODO: add optional relayers arr | ||||||
func (k Keeper) EscrowPacketFee(ctx sdk.Context, refundAcc sdk.AccAddress, fee types.Fee, packetID channeltypes.PacketId) error { | ||||||
// check if the refund account exists | ||||||
hasRefundAcc := k.authKeeper.GetAccount(ctx, refundAcc) | ||||||
if hasRefundAcc == nil { | ||||||
return sdkerrors.Wrap(types.ErrRefundAccNotFound, fmt.Sprintf("Account with address: %s not found", refundAcc.String())) | ||||||
} | ||||||
|
||||||
fees := sdk.Coins{ | ||||||
*fee.AckFee, *fee.ReceiveFee, *fee.TimeoutFee, | ||||||
} | ||||||
|
||||||
// check if refundAcc has balance for each fee | ||||||
colin-axner marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
for _, f := range fees { | ||||||
hasBalance := k.bankKeeper.HasBalance(ctx, refundAcc, f) | ||||||
if !hasBalance { | ||||||
return sdkerrors.Wrap(types.ErrBalanceNotFound, fmt.Sprintf("%s", refundAcc.String())) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this error be insufficient balance? |
||||||
} | ||||||
} | ||||||
|
||||||
for _, coin := range fees { | ||||||
// escrow each fee with account module | ||||||
if err := k.bankKeeper.SendCoinsFromAccountToModule( | ||||||
AdityaSripal marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
ctx, refundAcc, types.ModuleName, sdk.Coins{coin}, | ||||||
); err != nil { | ||||||
return err | ||||||
colin-axner marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
} | ||||||
} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can be more capital efficient here. Really we just need to escrow the Since the packet will only go down one of those 2 paths. There's never a point where all 3 fees are paid out There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was under the impression that each coin could be of a separate denom? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is correct. You can still calculate max. Suppose: Then you need to escrow: If packet gets acked, then you refund: If packet times out, you refund Same logic would hold for sdk.Coins fee There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can check if there's a utility function in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, thanks, makes sense. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to go with the simple approach and do this as a future optimization (like how we pushed consensus state pruning until after launch). It is additional complexity There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree with @colin-axner 👍 |
||||||
|
||||||
// Store fee in state for reference later | ||||||
// feeInEscrow/<refund-account>/<channel-id>/packet/<sequence-id>/ -> Fee (timeout, ack, onrecv) | ||||||
k.SetFeeInEscrow(ctx, fee, refundAcc.String(), packetID.ChannelId, packetID.Sequence) | ||||||
return nil | ||||||
} | ||||||
|
||||||
// PayFee pays the acknowledgement fee & receive fee for a given packetId while refunding the timeout fee to the refund account associated with the Fee | ||||||
func (k Keeper) payFee(ctx sdk.Context, refundAcc, forwardRelayer, reverseRelayer sdk.AccAddress, packetID channeltypes.PacketId) error { | ||||||
// check if there is a Fee in escrow for the given packetId | ||||||
feeInEscrow, hasFee := k.GetFeeInEscrow(ctx, refundAcc.String(), packetID.ChannelId, packetID.Sequence) | ||||||
if !hasFee { | ||||||
return sdkerrors.Wrap(types.ErrFeeNotFound, fmt.Sprintf("%s", refundAcc.String())) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't the error indicate for the channel/sequence? |
||||||
} | ||||||
|
||||||
// get module accAddr | ||||||
feeModuleAccAddr := k.authKeeper.GetModuleAddress(types.ModuleName) | ||||||
|
||||||
// send ack fee to reverse relayer | ||||||
if feeInEscrow.AckFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, reverseRelayer, sdk.Coins{*feeInEscrow.AckFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrPayingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.AckFee.Denom, feeInEscrow.AckFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// send receive fee to forward relayer | ||||||
if feeInEscrow.ReceiveFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, forwardRelayer, sdk.Coins{*feeInEscrow.ReceiveFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrPayingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.ReceiveFee.Denom, feeInEscrow.ReceiveFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// refund timeout fee to refundAddr | ||||||
if feeInEscrow.TimeoutFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, refundAcc, sdk.Coins{*feeInEscrow.TimeoutFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrRefundingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.TimeoutFee.Denom, feeInEscrow.TimeoutFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// set fee as an empty struct (if we reach this point Fee is paid in full) | ||||||
k.SetFeeInEscrow(ctx, types.Fee{}, refundAcc.String(), packetID.ChannelId, packetID.Sequence) | ||||||
|
||||||
return nil | ||||||
} | ||||||
|
||||||
// PayFeeTimeout pays the timeout fee for a given packetId while refunding the acknowledgement fee & receive fee to the refund account associated with the Fee | ||||||
func (k Keeper) payFeeTimeout(ctx sdk.Context, refundAcc, reverseRelayer sdk.AccAddress, packetID channeltypes.PacketId) error { | ||||||
// check if there is a Fee in escrow for the given packetId | ||||||
feeInEscrow, hasFee := k.GetFeeInEscrow(ctx, refundAcc.String(), packetID.ChannelId, packetID.Sequence) | ||||||
if !hasFee { | ||||||
return sdkerrors.Wrap(types.ErrFeeNotFound, fmt.Sprintf("%s", refundAcc.String())) | ||||||
} | ||||||
|
||||||
// get module accAddr | ||||||
feeModuleAccAddr := k.authKeeper.GetModuleAddress(types.ModuleName) | ||||||
|
||||||
// refund the ack fee | ||||||
if feeInEscrow.AckFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, refundAcc, sdk.Coins{*feeInEscrow.AckFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrRefundingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.AckFee.Denom, feeInEscrow.AckFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// refund the receive fee | ||||||
if feeInEscrow.ReceiveFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, refundAcc, sdk.Coins{*feeInEscrow.ReceiveFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrRefundingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.ReceiveFee.Denom, feeInEscrow.ReceiveFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// pay the timeout fee to the reverse relayer | ||||||
if feeInEscrow.TimeoutFee != nil { | ||||||
err := k.bankKeeper.SendCoins(ctx, feeModuleAccAddr, reverseRelayer, sdk.Coins{*feeInEscrow.TimeoutFee}) | ||||||
if err != nil { | ||||||
return sdkerrors.Wrap(types.ErrPayingFee, fmt.Sprintf("Error sending coin with Denom: %s for Amount: %d", feeInEscrow.TimeoutFee.Denom, feeInEscrow.TimeoutFee.Amount)) | ||||||
} | ||||||
} | ||||||
|
||||||
// set fee as an empty struct (if we reach this point Fee is paid in full) | ||||||
k.SetFeeInEscrow(ctx, types.Fee{}, refundAcc.String(), packetID.ChannelId, packetID.Sequence) | ||||||
|
||||||
return nil | ||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package keeper_test | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/ibc-go/modules/apps/29-fee/types" | ||
channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" | ||
seantking marked this conversation as resolved.
Show resolved
Hide resolved
|
||
) | ||
|
||
func (suite *KeeperTestSuite) TestEscrowPacketFee() { | ||
var ( | ||
err error | ||
) | ||
|
||
testCases := []struct { | ||
AdityaSripal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
name string | ||
malleate func() | ||
expPass bool | ||
}{ | ||
{ | ||
"success", func() {}, true, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
tc := tc | ||
|
||
suite.Run(tc.name, func() { | ||
suite.SetupTest() // reset | ||
|
||
// setup | ||
refundAcc := suite.chainA.SenderAccount.GetAddress() | ||
ackFee := &sdk.Coin{Denom: "stake", Amount: sdk.NewInt(100)} | ||
receiveFee := &sdk.Coin{Denom: "stake", Amount: sdk.NewInt(100)} | ||
timeoutFee := &sdk.Coin{Denom: "stake", Amount: sdk.NewInt(100)} | ||
fee := types.Fee{ackFee, receiveFee, timeoutFee} | ||
packetId := channeltypes.PacketId{ChannelId: "channel-0", PortId: "fee", Sequence: uint64(1)} | ||
|
||
tc.malleate() | ||
|
||
// escrow the packet fee | ||
err = suite.chainA.GetSimApp().IBCFeeKeeper.EscrowPacketFee(suite.chainA.GetContext(), refundAcc, fee, packetId) | ||
|
||
if tc.expPass { | ||
suite.Require().NoError(err) | ||
} else { | ||
suite.Require().Error(err) | ||
} | ||
|
||
}) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -10,6 +10,7 @@ import ( | |||
|
||||
"github.com/cosmos/ibc-go/modules/apps/29-fee/types" | ||||
channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" | ||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
host "github.com/cosmos/ibc-go/modules/core/24-host" | ||||
ibcexported "github.com/cosmos/ibc-go/modules/core/exported" | ||||
) | ||||
|
@@ -26,21 +27,25 @@ type Keeper struct { | |||
storeKey sdk.StoreKey | ||||
cdc codec.BinaryCodec | ||||
|
||||
authKeeper types.AccountKeeper | ||||
channelKeeper types.ChannelKeeper | ||||
portKeeper types.PortKeeper | ||||
bankKeeper types.BankKeeper | ||||
} | ||||
|
||||
// NewKeeper creates a new 29-fee Keeper instance | ||||
func NewKeeper( | ||||
cdc codec.BinaryCodec, key sdk.StoreKey, paramSpace paramtypes.Subspace, | ||||
channelKeeper types.ChannelKeeper, portKeeper types.PortKeeper, | ||||
channelKeeper types.ChannelKeeper, portKeeper types.PortKeeper, authKeeper types.AccountKeeper, bankKeeper types.BankKeeper, | ||||
) Keeper { | ||||
|
||||
return Keeper{ | ||||
cdc: cdc, | ||||
storeKey: key, | ||||
channelKeeper: channelKeeper, | ||||
portKeeper: portKeeper, | ||||
authKeeper: authKeeper, | ||||
bankKeeper: bankKeeper, | ||||
} | ||||
} | ||||
|
||||
|
@@ -70,6 +75,11 @@ func (k Keeper) GetNextSequenceSend(ctx sdk.Context, portID, channelID string) ( | |||
return k.channelKeeper.GetNextSequenceSend(ctx, portID, channelID) | ||||
} | ||||
|
||||
// GetFeeAccount returns the ICS29 - fee ModuleAccount address | ||||
colin-axner marked this conversation as resolved.
Show resolved
Hide resolved
|
||||
func (k Keeper) GetFeeModuleAddress() sdk.AccAddress { | ||||
return k.authKeeper.GetModuleAddress(types.ModuleName) | ||||
} | ||||
|
||||
// SendPacket wraps IBC ChannelKeeper's SendPacket function | ||||
func (k Keeper) SendPacket(ctx sdk.Context, chanCap *capabilitytypes.Capability, packet ibcexported.PacketI) error { | ||||
return k.channelKeeper.SendPacket(ctx, chanCap, packet) | ||||
|
@@ -113,3 +123,38 @@ func (k Keeper) GetCounterpartyAddress(ctx sdk.Context, address sdk.AccAddress) | |||
|
||||
return store.Get(key), true | ||||
} | ||||
|
||||
// Stores a Fee for a given packet in state | ||||
func (k Keeper) SetFeeInEscrow(ctx sdk.Context, fee types.Fee, account, channelId string, sequenceId uint64) { | ||||
store := ctx.KVStore(k.storeKey) | ||||
bz := k.MustMarshalFee(fee) | ||||
store.Set(types.KeyFeeInEscrow(account, channelId, sequenceId), bz) | ||||
} | ||||
|
||||
// Gets a Fee for a given packet | ||||
func (k Keeper) GetFeeInEscrow(ctx sdk.Context, account, channelId string, sequenceId uint64) (types.Fee, bool) { | ||||
store := ctx.KVStore(k.storeKey) | ||||
key := types.KeyFeeInEscrow(account, channelId, sequenceId) | ||||
bz := store.Get(key) | ||||
if bz == nil { | ||||
return types.Fee{}, false | ||||
} | ||||
|
||||
fee := k.MustUnmarshalFee(bz) | ||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
return fee, true | ||||
} | ||||
|
||||
// MustMarshalFee attempts to encode a Fee object and returns the | ||||
// raw encoded bytes. It panics on error. | ||||
func (k Keeper) MustMarshalFee(fee types.Fee) []byte { | ||||
return k.cdc.MustMarshal(&fee) | ||||
} | ||||
|
||||
// MustUnmarshalFee attempts to decode and return a Fee object from | ||||
// raw encoded bytes. It panics on error. | ||||
func (k Keeper) MustUnmarshalFee(bz []byte) types.Fee { | ||||
var fee types.Fee | ||||
k.cdc.MustUnmarshal(bz, &fee) | ||||
return fee | ||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if %s is used, .String() should automatically be called (unless I am mistaken?)