Skip to content

Commit

Permalink
Merge pull request #5 from PFC-developer/fix/counting-2024-10-14
Browse files Browse the repository at this point in the history
fix/counting-2024-10-14
  • Loading branch information
PFC-developer authored Oct 14, 2024
2 parents 2adf4a2 + 376a7fc commit bf4d96d
Show file tree
Hide file tree
Showing 35 changed files with 1,196 additions and 1,724 deletions.
84 changes: 35 additions & 49 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
members = ["contracts/token", "contracts/hub", "contracts/hub-tf",
"packages/*"]
"packages/steak"]
resolver = '1'

[profile.release.package.pfc-steak]
Expand Down
15 changes: 7 additions & 8 deletions contracts/hub-tf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pfc-steak-hub-tf"
version = "3.0.19"
version = "3.0.20"
authors = ["larry <[email protected]>", "PFC <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later"
Expand All @@ -10,26 +10,25 @@ repository = "https://github.com/pfc-developer/steak-contracts"
crate-type = ["cdylib", "rlib"]

[features]
#backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
#cosmwasm-std = { version = "1.2.1", features=["iterator","stargate","cosmwasm_1_1","staking"]}
cosmwasm-std = { version = "1.5.4", features = ["iterator", "stargate", "staking"] }
cosmwasm-std = { version = "1.5.8", features = ["iterator", "stargate", "staking"] }

cw2 = "1.1.2"
#cw20 = "1.0.0"
#cw20-base = { version = "1.0.0", features = ["library"] }
cw-storage-plus = "1.2.0"
cw-ownable = "0.5.0"
cw-item-set = "0.7.0"
cw-ownable = "0.5.1"
cw-item-set = "0.7.1"
prost = { version = "0.12.3", default-features = false, features = ["prost-derive"] }
prost-types = { version = "0.12.3", default-features = false }
schemars = "0.8.11"
schemars = "0.8.21"
pfc-steak = { path = "../../packages/steak" }
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
serde = { version = "1.0.210", default-features = false, features = ["derive"] }
pfc-fee-split = "1.5.0"
pfc-dust-collector = "0.1.0"
#{ path="../../packages/pfc-dust-collector" }
osmosis-std-derive = "0.15.3"
[dev-dependencies]
protobuf = { version = "3.1.0", features = ["with-bytes"] }
protobuf = { version = "3.6.0", features = ["with-bytes"] }
6 changes: 3 additions & 3 deletions contracts/hub-tf/src/contract.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::convert::TryInto;

use cosmwasm_std::{
entry_point, to_json_binary, Binary, Deps, DepsMut, Env, MessageInfo, Reply, Response,
StdError, StdResult,
Binary, Deps, DepsMut, Env, MessageInfo, Reply, Response, StdError, StdResult, entry_point,
to_json_binary,
};
use cw2::{get_contract_version, set_contract_version, ContractVersion};
use cw2::{ContractVersion, get_contract_version, set_contract_version};
use pfc_steak::{
hub::{CallbackMsg, MigrateMsg, QueryMsg},
hub_tf::{ExecuteMsg, InstantiateMsg, TokenFactoryType},
Expand Down
Loading

0 comments on commit bf4d96d

Please sign in to comment.