@@ -29,6 +29,7 @@ import (
29
29
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/incentives"
30
30
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/lockup"
31
31
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/protorev"
32
+ "github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/smartaccount"
32
33
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/superfluid"
33
34
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/tokenfactory"
34
35
"github.com/DefiantLabs/cosmos-tax-cli/osmosis/modules/valsetpref"
@@ -106,6 +107,10 @@ var messageTypeIgnorer = map[string]interface{}{
106
107
ibc .MsgChannelCloseConfirm : nil ,
107
108
ibc .MsgChannelCloseInit : nil ,
108
109
ibc .MsgSubmitMisbehaviour : nil ,
110
+
111
+ // Interchain accounts are being explored for taxable types
112
+ ibc .InterchainAccountsMsgRegisterInterchainAccount : nil ,
113
+ ibc .InterchainAccountsMsgSendTX : nil ,
109
114
// Creating and modifying gauges does not create taxable events
110
115
incentives .MsgCreateGauge : nil ,
111
116
incentives .MsgAddToGauge : nil ,
@@ -121,6 +126,11 @@ var messageTypeIgnorer = map[string]interface{}{
121
126
// Unjailing and updating params is not taxable
122
127
slashing .MsgUnjail : nil ,
123
128
slashing .MsgUpdateParams : nil ,
129
+
130
+ // Smart accounts are being explored
131
+ smartaccount .MsgAddAuthenticator : nil ,
132
+ smartaccount .MsgRemoveAuthenticator : nil ,
133
+
124
134
// Creating and editing validator is not taxable
125
135
staking .MsgCreateValidator : nil ,
126
136
staking .MsgEditValidator : nil ,
0 commit comments