Skip to content

Commit 84128ed

Browse files
committed
feat(deployments): deploy U and eU on babylon testnet
1 parent 776a82a commit 84128ed

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

cosmwasm/cosmwasm.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ _: {
306306
"state-lens-ics23-ics23"
307307
];
308308
u = "bbn1uuuuuuuuu9un2qpksam7rlttpxc8dc76mcphhsmp39pxjnsvrtcqnrn5rr";
309+
eu = "bbn1eueueueu9var4yhdruyzkjcsh74xzeug6ckyy60hs0vcqnzql2hqscechf";
309310
}
310311
{
311312
chain-id = "bbn-1";

cosmwasm/cw20-wrapped-tokenfactory/src/contract.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,8 @@ pub fn init(
406406
}]
407407
.into_iter()
408408
.chain((msg.decimals != 0).then(|| DenomUnit {
409-
denom: msg.symbol.clone(),
409+
// tokenfactory/{self_address}/{symbol}
410+
denom: format!("{denom}{}", msg.symbol),
410411
exponent: msg.decimals.into(),
411412
aliases: vec![],
412413
}))

0 commit comments

Comments
 (0)