diff --git a/.env.example b/.env.example
index 2e44075..9a31543 100644
--- a/.env.example
+++ b/.env.example
@@ -3,7 +3,6 @@ REACT_APP_WALLET_CONNECT_PROJECT_ID=
REACT_APP_DEFAULT_GAS_PRICE=0.025
# Reference: https://github.com/cosmos/cosmos-sdk/issues/16020
REACT_APP_GAS_ADJUSTMENT=2
-REACT_APP_LACONICD_RPC_URL=https://laconicd-sapo.laconic.com
# Example: https://example-url-1.com,https://example-url-2.com
REACT_APP_ALLOWED_URLS=
diff --git a/public/index.html b/public/index.html
index 25b8db1..da7e5f9 100644
--- a/public/index.html
+++ b/public/index.html
@@ -6,7 +6,7 @@
-
+
@@ -27,7 +27,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
-
Laconic Wallet
+ Zenith Wallet
diff --git a/public/manifest.json b/public/manifest.json
index f3556e5..a7819c8 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,6 +1,6 @@
{
- "short_name": "Laconic Wallet",
- "name": "Laconic Wallet Web App",
+ "short_name": "Zenith Wallet",
+ "name": "Zenith Wallet Web App",
"icons": [
{
"src": "favicon.ico",
diff --git a/src/import-meta-env.d.ts b/src/import-meta-env.d.ts
index 388d2b7..aa0989f 100644
--- a/src/import-meta-env.d.ts
+++ b/src/import-meta-env.d.ts
@@ -4,7 +4,6 @@ interface ImportMetaEnv {
readonly REACT_APP_WALLET_CONNECT_PROJECT_ID: string;
readonly REACT_APP_DEFAULT_GAS_PRICE: string;
readonly REACT_APP_GAS_ADJUSTMENT: string;
- readonly REACT_APP_LACONICD_RPC_URL: string;
readonly REACT_APP_ALLOWED_URLS: string;
}
diff --git a/src/index.tsx b/src/index.tsx
index 61a4189..8e6f133 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -113,7 +113,7 @@ root.render(
`Laconic | Wallet`,
+ formatter: () => `Zenith | Wallet`,
}}
theme={navigationTheme}
>
diff --git a/src/screens/ApproveTransfer.tsx b/src/screens/ApproveTransfer.tsx
index 34fcdff..d64fb11 100644
--- a/src/screens/ApproveTransfer.tsx
+++ b/src/screens/ApproveTransfer.tsx
@@ -42,7 +42,7 @@ import TxErrorDialog from '../components/TxErrorDialog';
import { EIP155_SIGNING_METHODS } from '../utils/wallet-connect/EIP155Data';
import { COSMOS_METHODS } from '../utils/wallet-connect/COSMOSData';
-export const MEMO = 'Sending signed tx from Laconic Wallet';
+export const MEMO = 'Sending signed tx from Zenith Wallet';
// Reference: https://ethereum.org/en/developers/docs/gas/#what-is-gas-limit
const ETH_MINIMUM_GAS = 21000;
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index 3f93d29..8680e55 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -6,30 +6,6 @@ export const EIP155 = 'eip155';
export const COSMOS = 'cosmos';
export const DEFAULT_NETWORKS: NetworksFormData[] = [
- {
- chainId: 'laconic-testnet-2',
- networkName: 'laconicd testnet-2',
- namespace: COSMOS,
- rpcUrl: import.meta.env.REACT_APP_LACONICD_RPC_URL!,
- blockExplorerUrl: '',
- nativeDenom: 'alnt',
- addressPrefix: 'laconic',
- coinType: '118',
- gasPrice: '0.001',
- isDefault: true,
- },
- {
- chainId: 'laconic_9000-1',
- networkName: 'laconicd',
- namespace: COSMOS,
- rpcUrl: "https://laconicd.laconic.com",
- blockExplorerUrl: '',
- nativeDenom: 'alnt',
- addressPrefix: 'laconic',
- coinType: '118',
- gasPrice: '1',
- isDefault: false,
- },
{
chainId: '1',
networkName: EIP155_CHAINS['eip155:1'].name,
diff --git a/stack/stack-orchestrator/compose/docker-compose-laconic-wallet-web.yml b/stack/stack-orchestrator/compose/docker-compose-laconic-wallet-web.yml
index 6fa3e04..fbe8cd0 100644
--- a/stack/stack-orchestrator/compose/docker-compose-laconic-wallet-web.yml
+++ b/stack/stack-orchestrator/compose/docker-compose-laconic-wallet-web.yml
@@ -9,7 +9,6 @@ services:
WALLET_CONNECT_VERIFY_CODE: ${WALLET_CONNECT_VERIFY_CODE}
CERC_DEFAULT_GAS_PRICE: ${CERC_DEFAULT_GAS_PRICE:-0.025}
CERC_GAS_ADJUSTMENT: ${CERC_GAS_ADJUSTMENT:-2}
- CERC_LACONICD_RPC_URL: ${CERC_LACONICD_RPC_URL:-https://laconicd.laconic.com}
CERC_ZENITHD_RPC_URL: ${CERC_ZENITHD_RPC_URL}
CERC_ALLOWED_URLS: ${CERC_ALLOWED_URLS}
command: ["bash", "/scripts/run.sh"]
diff --git a/stack/stack-orchestrator/config/app/run.sh b/stack/stack-orchestrator/config/app/run.sh
index a9b2f31..1f7589b 100755
--- a/stack/stack-orchestrator/config/app/run.sh
+++ b/stack/stack-orchestrator/config/app/run.sh
@@ -9,14 +9,12 @@ echo "Using the following env variables:"
echo "WALLET_CONNECT_ID: ${WALLET_CONNECT_ID}"
echo "CERC_DEFAULT_GAS_PRICE: ${CERC_DEFAULT_GAS_PRICE}"
echo "CERC_GAS_ADJUSTMENT: ${CERC_GAS_ADJUSTMENT}"
-echo "CERC_LACONICD_RPC_URL: ${CERC_LACONICD_RPC_URL}"
echo "CERC_ALLOWED_URLS: ${CERC_ALLOWED_URLS}"
# Build with required env
export REACT_APP_WALLET_CONNECT_PROJECT_ID=$WALLET_CONNECT_ID
export REACT_APP_DEFAULT_GAS_PRICE=$CERC_DEFAULT_GAS_PRICE
export REACT_APP_GAS_ADJUSTMENT=$CERC_GAS_ADJUSTMENT
-export REACT_APP_LACONICD_RPC_URL=$CERC_LACONICD_RPC_URL
export REACT_APP_ALLOWED_URLS=$CERC_ALLOWED_URLS
# Set env variables in build
diff --git a/stack/stack-orchestrator/stack/laconic-wallet-web/README.md b/stack/stack-orchestrator/stack/laconic-wallet-web/README.md
index 9c0359e..0796ca7 100644
--- a/stack/stack-orchestrator/stack/laconic-wallet-web/README.md
+++ b/stack/stack-orchestrator/stack/laconic-wallet-web/README.md
@@ -64,9 +64,6 @@ Instructions for running the `zenith-wallet-web` using [laconic-so](https://git.
# Reference: https://github.com/cosmos/cosmos-sdk/issues/16020
CERC_GAS_ADJUSTMENT=
- # RPC endpoint of laconicd node (default: https://laconicd.laconic.com)
- CERC_LACONICD_RPC_URL=
-
# Zenith RPC endpoint
CERC_ZENITHD_RPC_URL=
```