Skip to content

Commit

Permalink
chore: rename ucs03-zkgm-msg to ucs03-zkgm-token-minter-api
Browse files Browse the repository at this point in the history
Signed-off-by: aeryz <[email protected]>
  • Loading branch information
aeryz committed Jan 25, 2025
1 parent d11040d commit 9d7a5d6
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 48 deletions.
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ members = [
"lib/ibc-classic-spec",
"lib/state-lens-light-client-types",
"lib/create3",
"lib/linea-types", "cosmwasm/native-token-minter", "cosmwasm/cw20-token-minter", "cosmwasm/ucs03-zkgm-msg",
"lib/linea-types", "cosmwasm/native-token-minter", "cosmwasm/cw20-token-minter", "cosmwasm/ucs03-zkgm-token-minter-api",
]

[workspace.package]
Expand Down Expand Up @@ -244,7 +244,7 @@ ibc-union = { path = "cosmwasm/ibc-union/core", default-features =
ibc-union-light-client = { path = "cosmwasm/ibc-union/core/light-client-interface", default-features = false }
ibc-union-msg = { path = "cosmwasm/ibc-union/core/msg", default-features = false }

ucs03-zkgm-msg = { path = "cosmwasm/ucs03-zkgm-msg", default-features = false }
ucs03-zkgm-token-minter-api = { path = "cosmwasm/ucs03-zkgm-token-minter-api", default-features = false }

gnark-key-parser = { path = "lib/gnark-key-parser", default-features = false }
gnark-mimc = { path = "lib/gnark-mimc", default-features = false }
Expand Down
30 changes: 15 additions & 15 deletions cosmwasm/cw20-token-minter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "cw20-token-minter"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
authors.workspace = true
edition.workspace = true
license-file.workspace = true
publish.workspace = true
repository.workspace = true
name = "cw20-token-minter"
publish.workspace = true
repository.workspace = true
version = "0.1.0"

[dependencies]
cosmwasm-std = { version = "1.5" }
cw20 = "1.1.2"
cw20-base = { version = "1.1.2", features = ["library"] }
token-factory-api = { workspace = true }
cosmwasm-schema = { version = "1.5" }
cw-storage-plus = { version = "1.2" }
serde = { workspace = true, features = [ "derive" ] }
thiserror = { workspace = true}
ucs03-zkgm-msg = { workspace = true }
cosmwasm-schema = { version = "1.5" }
cosmwasm-std = { version = "1.5" }
cw-storage-plus = { version = "1.2" }
cw20 = "1.1.2"
cw20-base = { version = "1.1.2", features = ["library"] }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
token-factory-api = { workspace = true }
ucs03-zkgm-token-minter-api = { workspace = true }

[lints]
workspace = true
26 changes: 13 additions & 13 deletions cosmwasm/ibc-union/app/ucs03-zkgm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ crate-type = ["cdylib", "rlib"]
library = []

[dependencies]
alloy = { workspace = true, features = ["sol-types"] }
base58 = { version = "0.2" }
cosmwasm-schema = { version = "1.5" }
cosmwasm-std = { version = "1.5" }
cw-storage-plus = { version = "1.2" }
ethabi = { workspace = true }
ibc-union-msg = { workspace = true }
ibc-union-spec = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
token-factory-api = { workspace = true }
unionlabs = { workspace = true, features = ["ethabi"] }
ucs03-zkgm-msg = { workspace = true }
alloy = { workspace = true, features = ["sol-types"] }
base58 = { version = "0.2" }
cosmwasm-schema = { version = "1.5" }
cosmwasm-std = { version = "1.5" }
cw-storage-plus = { version = "1.2" }
ethabi = { workspace = true }
ibc-union-msg = { workspace = true }
ibc-union-spec = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
token-factory-api = { workspace = true }
ucs03-zkgm-token-minter-api = { workspace = true }
unionlabs = { workspace = true, features = ["ethabi"] }

[dev-dependencies]
hex = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/ibc-union/app/ucs03-zkgm/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use ibc_union_msg::{
};
use ibc_union_spec::types::Packet;
use token_factory_api::{Metadata, MetadataResponse, TokenFactoryMsg, TokenFactoryQuery};
use ucs03_zkgm_msg::LocalTokenMsg;
use ucs03_zkgm_token_minter_api::LocalTokenMsg;
use unionlabs::{
ethereum::keccak256,
primitives::{Bytes, H256},
Expand Down Expand Up @@ -1009,7 +1009,7 @@ fn transfer(
}

fn make_wasm_msg(
msg: impl Into<ucs03_zkgm_msg::ExecuteMsg>,
msg: impl Into<ucs03_zkgm_token_minter_api::ExecuteMsg>,
minter: impl Into<String>,
funds: Vec<Coin>,
) -> StdResult<CosmosMsg> {
Expand Down
20 changes: 10 additions & 10 deletions cosmwasm/native-token-minter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "native-token-minter"
version = "0.0.0"
authors.workspace = true
edition.workspace = true
authors.workspace = true
edition.workspace = true
license-file.workspace = true
publish.workspace = true
repository.workspace = true
name = "native-token-minter"
publish.workspace = true
repository.workspace = true
version = "0.0.0"

[dependencies]
cosmwasm-std = { version = "1.5" }
token-factory-api = { workspace = true }
cosmwasm-schema = { version = "1.5" }
ucs03-zkgm-msg = { workspace = true }
cosmwasm-schema = { version = "1.5" }
cosmwasm-std = { version = "1.5" }
token-factory-api = { workspace = true }
ucs03-zkgm-token-minter-api = { workspace = true }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion cosmwasm/native-token-minter/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use cosmwasm_std::{
entry_point, BankMsg, Coin, CosmosMsg, DepsMut, Env, MessageInfo, Response, StdResult,
};
use token_factory_api::TokenFactoryMsg;
use ucs03_zkgm_msg::{ExecuteMsg, LocalTokenMsg};
use ucs03_zkgm_token_minter_api::{ExecuteMsg, LocalTokenMsg};

#[cw_serde]
pub struct InitMsg {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "ucs03-zkgm-msg"
name = "ucs03-zkgm-token-minter-api"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.

0 comments on commit 9d7a5d6

Please sign in to comment.