CosmWasm / sylvia

CosmWasm smart contract framework
Apache License 2.0
96 stars 16 forks source link

Introduce the extension traits for the interface type #233

Closed jawoznia closed 1 year ago

jawoznia commented 1 year ago

Similar to #86

pub trait Interface {
    type Exec;
    type Query;
    // type Sudo; once implemented on sylvia
}