Skip to content

Commit c860e0a

Browse files
authored
feat(deployments): deploy U and eU on babylon testnet (#5209)
2 parents 87b2133 + 9b2ebc3 commit c860e0a

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

cosmwasm/cosmwasm.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,8 @@ _: {
305305
"state-lens-ics23-mpt"
306306
"state-lens-ics23-ics23"
307307
];
308+
u = "bbn1uuuuuuuuu9un2qpksam7rlttpxc8dc76mcphhsmp39pxjnsvrtcqnrn5rr";
309+
eu = "bbn1eueueueu9var4yhdruyzkjcsh74xzeug6ckyy60hs0vcqnzql2hqscechf";
308310
}
309311
{
310312
chain-id = "bbn-1";

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,17 +402,18 @@ pub fn init(
402402
denom_units: [DenomUnit {
403403
denom: denom.clone(),
404404
exponent: 0,
405-
aliases: vec![msg.symbol.clone()],
405+
aliases: vec![],
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
}))
413414
.collect(),
414415
base: Some(denom.clone()),
415-
display: Some(msg.symbol.clone()),
416+
display: Some(denom),
416417
name: Some(msg.name),
417418
symbol: Some(msg.symbol),
418419
uri: None,

deployments/deployments.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,18 @@
103103
"code_id": 753
104104
}
105105
}
106+
},
107+
"u": {
108+
"address": "bbn1uuuuuuuuu9un2qpksam7rlttpxc8dc76mcphhsmp39pxjnsvrtcqnrn5rr",
109+
"height": 2086743,
110+
"commit": "dirty",
111+
"code_id": 1101
112+
},
113+
"eu": {
114+
"address": "bbn1eueueueu9var4yhdruyzkjcsh74xzeug6ckyy60hs0vcqnzql2hqscechf",
115+
"height": 2087077,
116+
"commit": "dirty",
117+
"code_id": 1102
106118
}
107119
},
108120
"base.8453": {

0 commit comments

Comments
 (0)