You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a junokit project the cargo.toml created in contracts use local paths from cw-controller,cw-storage-plus,cw20. Junokit compile hence does not work, removing the local paths from the cargo.toml file lets the contracts compile. Here's how the code looks:
cw-controllers = { version = "0.13.2" }
cw-storage-plus = { version = "0.13.2" }
cw20 = { version = "0.13.2" }
The text was updated successfully, but these errors were encountered:
When creating a junokit project the cargo.toml created in contracts use local paths from cw-controller,cw-storage-plus,cw20. Junokit compile hence does not work, removing the local paths from the cargo.toml file lets the contracts compile. Here's how the code looks:
cw-controllers = { version = "0.13.2" }
cw-storage-plus = { version = "0.13.2" }
cw20 = { version = "0.13.2" }
The text was updated successfully, but these errors were encountered: