generated from cosmosregistry/chain-minimal
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# ---------------------------------------------------------------------------- # | ||
# ROLLAPP CONFIG # | ||
# ---------------------------------------------------------------------------- # | ||
ROLLAPP_CHAIN_ID="demo-dymension-rollapp" | ||
KEY_NAME_ROLLAPP="rol-user" | ||
DENOM="urax" | ||
MONIKER=$ROLLAPP_CHAIN_ID-sequencer | ||
#!/bin/bash | ||
|
||
# Function to set and log environment variable | ||
set_env_var() { | ||
local var_name="$1" | ||
local value="$2" | ||
|
||
export "$var_name"="$value" | ||
echo "Exported $var_name: $value" | ||
} | ||
|
||
# Set and log environment variables | ||
set_env_var ROLLAPP_CHAIN_ID "demo-dymension-rollapp" | ||
set_env_var KEY_NAME_ROLLAPP "rol-user" | ||
set_env_var DENOM "urax" | ||
set_env_var MONIKER "$ROLLAPP_CHAIN_ID-sequencer" |