Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/prepare for release #92

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/epoch-manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "epoch-manager"
version = "0.1.2"
version = "1.0.0"
authors = ["Kerber0x <kerber0x@protonmail.com>"]
edition.workspace = true
description = "The Epoch Manager contract keeps track of epochs."
Expand Down
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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farm-manager"
version = "0.1.6"
version = "1.0.0"
authors = ["Kerber0x <kerber0x@protonmail.com>"]
edition.workspace = true
description = "The Farm Manager is a contract that allows to manage multiple pool farms in a single contract."
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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fee-collector"
description = "Fee collector contract for MANTRA. Fees accrued by pool and farm creation, in addition to swaps, are collected here."
version = "0.1.0"
version = "1.0.0"
authors = ["Javier C <javier.m.costa@mantra.finance>"]
edition.workspace = true

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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pool-manager"
version = "0.1.5"
version = "1.0.0"
authors = [
"0xFable <0xfable@protonmail.com>",
"kaimen-sano <kaimen_sano@protonmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion contracts/pool-manager/schema/pool-manager.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "pool-manager",
"contract_version": "0.1.5",
"contract_version": "1.0.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
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
Loading