ComposableFi / composable-ibc

A trustless, cross-chain bridging protocol.
https://picasso.network
76 stars 50 forks source link

`main` branch missing changes from previous `master` branch #505

Open damiannolan opened 2 months ago

damiannolan commented 2 months ago

It appears the main branch (default) on the repository is missing some changes from the previous default (master) branch.

Most notably what came to my attention was that the cosmwasm contract apis for the 08-wasm go module are not in sync / update to date.

For example the InstantiateMsg is completely empty on main.

#[cw_serde]
pub struct InstantiateMsg {}

Whereas on the master branch, it is populated with fields.

https://github.com/ComposableFi/composable-ibc/blob/master/light-clients/ics08-wasm/src/instantiate.rs#L8-L18