Skip to content

Commit

Permalink
Update networks client setup
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Mar 22, 2024
1 parent 7483e0e commit 69b8fc7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions networks.autogenerated.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@
"FEE": "uosmo",
"GRPCPORT": 19093,
"GRPCWEB": 20094,
"HOME": "$HOME/.devnet",
"KEYRING_TEST": ".osmosisd",
"NETWORK_ID": 3,
"NODE": "tcp://127.0.0.1:38093",
Expand Down Expand Up @@ -160,8 +159,7 @@
"devnet": {
"CHAIN_ID_A": "centauri-dev",
"CHAIN_ID_B": "osmosis-dev",
"HOME": "$HOME/.devnet",
"RELAY_DATA": "$HOME/.devnet/osmosis-centauri",
"RELAY_DATA": "./osmosis-centauri",
"REST_PORT": 31066,
"TELEMETRY_PORT": 30142
}
Expand Down
3 changes: 1 addition & 2 deletions networks/osmosis-centauri.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
devnet = rec {
TELEMETRY_PORT = 30142;
REST_PORT = 31066;
HOME = devnet.directories.DEVNET_DATA_DIRECTORY;
RELAY_DATA = "${HOME}/osmosis-centauri";
RELAY_DATA = "./osmosis-centauri";
CHAIN_ID_A = chain_a.devnet.CHAIN_ID;
CHAIN_ID_B = chain_b.devnet.CHAIN_ID;
};
Expand Down
1 change: 0 additions & 1 deletion networks/osmosis.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ in
FEE = "uosmo";
GRPCPORT = 19090 + self.NETWORK_ID;
GRPCWEB = 20091 + self.NETWORK_ID;
HOME = "${devnet.directories.DEVNET_DATA_DIRECTORY}";
KEYRING_TEST = CHAIN_DATA;
NODE = "tcp://127.0.0.1:${builtins.toString CONSENSUS_RPC_PORT}";
P2PPORT = 26756 + self.NETWORK_ID;
Expand Down

0 comments on commit 69b8fc7

Please sign in to comment.