Ethan Frey

Results 170 comments of Ethan Frey

I like the idea as well. I think some limit on the memo field size is important. Not sure why 180bytes, but I would be against allowing 16KB (or 1...

There is some very clear Go code for this: https://github.com/cosmos/ibc-go/blob/main/modules/core/04-channel/keeper/events.go I would be happy just adding those to the spec, so it is clear for other implementations.

Or... we decide these events are not part of the spec?

I think this would make the spec a lot clearer for the pseudo-code and descriptions. I would not change the protobuf files though. I understood the idea to just make...

> Community feedback has indicated it'd be desirable to create different types of accounts for an interchain account. Does this mean vesting accounts cannot use ics27? Or just EVMOS smart...

Very cool idea here. And I definitely agree to keep this as a 2.0 feature. Let's get the basic ordered/unordered channels implemented, and deployed and then have some real use...

We have used a partial version of this in wasmd. Basically, in the `OnChannelAck` or `OnChannelConfirm` handlers, you can now send a packet (this got fixed in Cosmos SDK v0.41.0)....

Hi @lann Thank you for the response. Those links were very helpful. Indeed a deeper understanding of the component model and WIT format was very helpful for my mental model....

Thanks for the quick reply. I just found [where the variables interface is registered](https://github.com/fermyon/spin/blob/main/crates/trigger/src/lib.rs#L203-L208) but that didn't seem to provide an extension point for custom code, as it uses a...

I got a custom plugin trigger working and made custom wit interfaces to call a WASI guest, which makes use of various spin APIs and it is working well. I...