Hi. I have a problem using the cosmos module from the osmo-query package. As indicated in the cosmos-sdk code it no longer uses flag events now it uses query.
using cosmos.tx.v1beta1.getTxsEvent({...}) with events property throw error Query failed with (6): rpc error: code = Internal desc = query cannot be empty: unknown request
client.cosmos.tx.v1beta1.getTxsEvent({
//this should be query instead of events
events: ["message.action='/osmosis.concentratedliquidity.v1beta1.MsgCreatePosition'"],
limit: BigInt(1),
orderBy: OrderBy.ORDER_BY_ASC,
page: BigInt(1)
})
Hi. I have a problem using the cosmos module from the osmo-query package. As indicated in the cosmos-sdk code it no longer uses flag
eventsnow it usesquery.using cosmos.tx.v1beta1.getTxsEvent({...}) with
eventsproperty throw errorQuery failed with (6): rpc error: code = Internal desc = query cannot be empty: unknown request