-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #554 from DefiantLabs/feat/osmosis-v25-updates-v1
feat/osmosis v25 updates v1
- Loading branch information
Showing
17 changed files
with
532 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package auction | ||
|
||
import ( | ||
parsingTypes "github.com/DefiantLabs/cosmos-tax-cli/cosmos/modules" | ||
txModule "github.com/DefiantLabs/cosmos-tax-cli/cosmos/modules/tx" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
const ( | ||
MsgUpdateParams = "/sdk.auction.v1.MsgUpdateParams" | ||
MsgAuctionBid = "/sdk.auction.v1.MsgAuctionBid" | ||
) | ||
|
||
// The Skip Block SDK MsgAuctionBid message allows for the creation of a bid to execute a set of Transactions at the top of a block. | ||
// It is part of the MEV Lane x/auction module (https://docs.skip.money/blocksdk/lanes/existing-lanes/mev). | ||
// Research is being done on how the application should handle this message in the TX message parser. | ||
type WrapperMsgAuctionBid struct { | ||
txModule.Message | ||
} | ||
|
||
func (sf *WrapperMsgAuctionBid) String() string { | ||
return "" | ||
} | ||
|
||
func (sf *WrapperMsgAuctionBid) HandleMsg(msgType string, msg sdk.Msg, log *txModule.LogMessage) error { | ||
return nil | ||
} | ||
|
||
func (sf *WrapperMsgAuctionBid) ParseRelevantData() []parsingTypes.MessageRelevantInformation { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.