Skip to content

Commit

Permalink
chore: change contract names
Browse files Browse the repository at this point in the history
  • Loading branch information
mantricjavier committed Nov 13, 2024
1 parent ba10f6a commit 691b179
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/epoch-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::state::CONFIG;
use crate::{commands, queries};

// version info for migration info
const CONTRACT_NAME: &str = "mantra_epoch-manager";
const CONTRACT_NAME: &str = "mantra:epoch-manager";
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");

#[entry_point]
Expand Down
2 changes: 1 addition & 1 deletion contracts/farm-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::helpers::{
use crate::state::{CONFIG, FARM_COUNTER};
use crate::{farm, manager, position, queries};

const CONTRACT_NAME: &str = "mantra_farm-manager";
const CONTRACT_NAME: &str = "mantra:farm-manager";
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");

#[entry_point]
Expand Down
2 changes: 1 addition & 1 deletion contracts/fee-collector/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use mantra_utils::validate_contract;

use crate::error::ContractError;

const CONTRACT_NAME: &str = "mantra_fee-collector";
const CONTRACT_NAME: &str = "mantra:fee-collector";
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");

#[entry_point]
Expand Down
2 changes: 1 addition & 1 deletion contracts/pool-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::state::{
use crate::{liquidity, manager, queries, router, swap};

// version info for migration info
const CONTRACT_NAME: &str = "mantra_pool-manager";
const CONTRACT_NAME: &str = "mantra:pool-manager";
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");
pub const SINGLE_SIDE_LIQUIDITY_PROVISION_REPLY_ID: u64 = 1;

Expand Down

0 comments on commit 691b179

Please sign in to comment.