diff --git a/cw20/escrow/src/contract.rs b/cw20/escrow/src/contract.rs index 56276c2..251f09b 100644 --- a/cw20/escrow/src/contract.rs +++ b/cw20/escrow/src/contract.rs @@ -15,7 +15,7 @@ use crate::msg::{ use crate::state::{all_escrow_ids, Escrow, GenericBalance, ESCROWS}; // version info for migration info -const CONTRACT_NAME: &str = "crates.io:cw20-escrow"; +const CONTRACT_NAME: &str = "crates.io:{{project-name}}"; const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION"); #[cfg_attr(not(feature = "library"), entry_point)]