Some checks failed
CodeQL / Analyze (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Has been cancelled
100 lines
3.1 KiB
Go
100 lines
3.1 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"git.cw.tr/mukan-network/mukan-sdk/client"
|
|
"git.cw.tr/mukan-network/mukan-sdk/client/flags"
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
"git.cw.tr/mukan-network/mukan-sdk/version"
|
|
"git.cw.tr/mukan-network/mukan-sdk/x/auth/tx"
|
|
|
|
abci "git.cw.tr/mukan-network/mukan-consensus/abci/types"
|
|
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/apps/27-interchain-accounts/host/types"
|
|
icatypes "git.cw.tr/mukan-network/mukan-ibc/modules/apps/27-interchain-accounts/types"
|
|
channeltypes "git.cw.tr/mukan-network/mukan-ibc/modules/core/04-channel/types"
|
|
host "git.cw.tr/mukan-network/mukan-ibc/modules/core/24-host"
|
|
)
|
|
|
|
// GetCmdParams returns the command handler for the host submodule parameter querying.
|
|
func GetCmdParams() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "params",
|
|
Short: "Query the current interchain-accounts host submodule parameters",
|
|
Long: "Query the current interchain-accounts host submodule parameters",
|
|
Args: cobra.NoArgs,
|
|
Example: fmt.Sprintf("%s query interchain-accounts host params", version.AppName),
|
|
RunE: func(cmd *cobra.Command, _ []string) error {
|
|
clientCtx, err := client.GetClientQueryContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
queryClient := types.NewQueryClient(clientCtx)
|
|
|
|
res, err := queryClient.Params(cmd.Context(), &types.QueryParamsRequest{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return clientCtx.PrintProto(res.Params)
|
|
},
|
|
}
|
|
|
|
flags.AddQueryFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// GetCmdPacketEvents returns the command handler for the host packet events querying.
|
|
func GetCmdPacketEvents() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "packet-events [channel-id] [sequence]",
|
|
Short: "Query the interchain-accounts host submodule packet events",
|
|
Long: "Query the interchain-accounts host submodule packet events for a particular channel and sequence",
|
|
Args: cobra.ExactArgs(2),
|
|
Example: fmt.Sprintf("%s query interchain-accounts host packet-events channel-0 100", version.AppName),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
clientCtx, err := client.GetClientQueryContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
channelID, portID := args[0], icatypes.HostPortID
|
|
if err := host.ChannelIdentifierValidator(channelID); err != nil {
|
|
return err
|
|
}
|
|
|
|
seq, err := strconv.ParseUint(args[1], 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
searchEvents := []string{
|
|
fmt.Sprintf("%s.%s='%s'", channeltypes.EventTypeRecvPacket, channeltypes.AttributeKeyDstChannel, channelID),
|
|
fmt.Sprintf("%s.%s='%s'", channeltypes.EventTypeRecvPacket, channeltypes.AttributeKeyDstPort, portID),
|
|
fmt.Sprintf("%s.%s='%d'", channeltypes.EventTypeRecvPacket, channeltypes.AttributeKeySequence, seq),
|
|
}
|
|
|
|
result, err := tx.QueryTxsByEvents(clientCtx, 1, 1, strings.Join(searchEvents, " AND "), "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var resEvents []abci.Event
|
|
for _, r := range result.Txs {
|
|
resEvents = append(resEvents, r.Events...)
|
|
}
|
|
|
|
return clientCtx.PrintString(sdk.StringifyEvents(resEvents).String())
|
|
},
|
|
}
|
|
|
|
flags.AddQueryFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|