Skip to content

Commit e810b65

Browse files
committed
chore(devnet): muno -> au
1 parent 105f680 commit e810b65

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

drip/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
"grpc_url": "http://localhost:9090",
1313
"gas_config": {
1414
"gas_price": "1.0",
15-
"gas_denom": "muno",
15+
"gas_denom": "au",
1616
"gas_multiplier": "1.1",
1717
"max_gas": 40000000
1818
},
1919
"signer": "0xaa820fa947beb242032a41b6dc9a8b9c37d8f5fbcda0966b1ec80335b10a7d6f",
2020
"coins": [
2121
{
22-
"denom": "muno",
22+
"denom": "au",
2323
"amount": 13370
2424
}
2525
]

e2e/upgrades.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let
2424
}
2525
}
2626
],
27-
"deposit": "15000000muno",
27+
"deposit": "15000000au",
2828
"title": "${version}",
2929
"summary": "Upgrade to ${version}"
3030
}' > proposal-${version}.json
@@ -41,14 +41,14 @@ let
4141
upgradeTo = version: height: ''
4242
union.succeed('docker cp ${mkUpgradeProposal version height}/proposal-${version}.json devnet-union-minimal-union-minimal-0-1:/proposal-${version}.json')
4343
44-
print(union.succeed('docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} --root ./.unionvisor call --bundle ${bundle} -- tx gov submit-proposal proposal-${version}.json --from valoper-0 --keyring-backend test -y --gas auto --gas-adjustment 1.4 --gas-prices 1muno'))
44+
print(union.succeed('docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} --root ./.unionvisor call --bundle ${bundle} -- tx gov submit-proposal proposal-${version}.json --from valoper-0 --keyring-backend test -y --gas auto --gas-adjustment 1.4 --gas-prices 1au'))
4545
4646
print(union.succeed("docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query gov proposal ${toString (height / 10)} --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.proposal.status == \"PROPOSAL_STATUS_VOTING_PERIOD\"'"))
4747
union.wait_until_succeeds("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query gov proposal ${toString (height / 10)} --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.proposal.status == \"PROPOSAL_STATUS_VOTING_PERIOD\"') == true ]]", timeout=30)
4848
4949
${forEachNode (
5050
id:
51-
"print(union.succeed('docker exec devnet-union-minimal-union-minimal-${id}-1 ${unionvisorBin} --root ./.unionvisor call --bundle ${bundle} -- tx gov vote ${toString (height / 10)} yes --keyring-backend test --from valoper-${id} -y --gas auto --gas-adjustment 1.8 --gas-prices 1muno'))"
51+
"print(union.succeed('docker exec devnet-union-minimal-union-minimal-${id}-1 ${unionvisorBin} --root ./.unionvisor call --bundle ${bundle} -- tx gov vote ${toString (height / 10)} yes --keyring-backend test --from valoper-${id} -y --gas auto --gas-adjustment 1.8 --gas-prices 1au'))"
5252
)}
5353
5454
union.wait_until_succeeds("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query gov proposal ${toString (height / 10)} --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.proposal.status == \"PROPOSAL_STATUS_PASSED\"') == true ]]", timeout=60)
@@ -80,7 +80,7 @@ in
8080
union.succeed("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query staking delegations union1fktal7292h36h7glff5edq59vpdfn7504duw5m --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.delegation_responses') == null ]]")
8181
8282
# Ensure legacy tokens are burnt
83-
union.succeed("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query bank denom-owners muno --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.denom_owners') == null ]]")
83+
union.succeed("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query bank denom-owners au --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.denom_owners') == null ]]")
8484
union.succeed("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query bank denom-owners ugas --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.denom_owners') == null ]]")
8585
union.succeed("[[ $(docker exec devnet-union-minimal-union-minimal-0-1 ${unionvisorBin} -l off --root ./.unionvisor call --bundle ${bundle} -- query bank denom-owners upoa --output json | ${pkgs.lib.meta.getExe pkgs.jq} '.denom_owners') == null ]]")
8686
'';

networks/devnet.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
node = self'.packages.uniond;
4848
chainId = "union-devnet-1";
4949
chainName = "union";
50-
denom = "muno";
50+
denom = "au";
5151
keyType = "bn254";
5252
validatorCount = 4;
5353
sdkVersion = 50;
@@ -185,7 +185,7 @@
185185
node = (get-flake inputs.v1_0_0).packages.${system}.uniond;
186186
chainId = "union-minimal-devnet-1";
187187
chainName = "union-minimal";
188-
denom = "muno";
188+
denom = "au";
189189
keyType = "bn254";
190190
validatorCount = 4;
191191
portIncrease = 0;
@@ -199,7 +199,7 @@
199199
tokenfactory.params = {
200200
denom_creation_fee = [
201201
{
202-
denom = "muno";
202+
denom = "au";
203203
amount = "10000000";
204204
}
205205
];
@@ -232,7 +232,7 @@
232232
--api.rpc-max-body-bytes 100000000 \
233233
--grpc.address 0.0.0.0:9090 \
234234
--log_level rpc-server:warn,x/wasm:debug,*:info \
235-
--minimum-gas-prices "0muno" \
235+
--minimum-gas-prices "0au" \
236236
--rpc.laddr tcp://0.0.0.0:26657 \
237237
--rpc.pprof_laddr 0.0.0.0:6060 \
238238
--rpc.unsafe

0 commit comments

Comments
 (0)