We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776a82a commit 84128edCopy full SHA for 84128ed
cosmwasm/cosmwasm.nix
@@ -306,6 +306,7 @@ _: {
306
"state-lens-ics23-ics23"
307
];
308
u = "bbn1uuuuuuuuu9un2qpksam7rlttpxc8dc76mcphhsmp39pxjnsvrtcqnrn5rr";
309
+ eu = "bbn1eueueueu9var4yhdruyzkjcsh74xzeug6ckyy60hs0vcqnzql2hqscechf";
310
}
311
{
312
chain-id = "bbn-1";
cosmwasm/cw20-wrapped-tokenfactory/src/contract.rs
@@ -406,7 +406,8 @@ pub fn init(
406
}]
407
.into_iter()
408
.chain((msg.decimals != 0).then(|| DenomUnit {
409
- denom: msg.symbol.clone(),
+ // tokenfactory/{self_address}/{symbol}
410
+ denom: format!("{denom}{}", msg.symbol),
411
exponent: msg.decimals.into(),
412
aliases: vec![],
413
}))
0 commit comments