Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a4a478e32 |
@ -3,7 +3,7 @@ REACT_APP_WALLET_CONNECT_PROJECT_ID=
|
|||||||
REACT_APP_DEFAULT_GAS_PRICE=0.025
|
REACT_APP_DEFAULT_GAS_PRICE=0.025
|
||||||
# Reference: https://github.com/cosmos/cosmos-sdk/issues/16020
|
# Reference: https://github.com/cosmos/cosmos-sdk/issues/16020
|
||||||
REACT_APP_GAS_ADJUSTMENT=2
|
REACT_APP_GAS_ADJUSTMENT=2
|
||||||
REACT_APP_LACONICD_RPC_URL=https://laconicd-sapo.laconic.com
|
REACT_APP_LACONICD_RPC_URL=https://laconicd-mainnet-1.laconic.com
|
||||||
|
|
||||||
# Example: https://example-url-1.com,https://example-url-2.com
|
# Example: https://example-url-1.com,https://example-url-2.com
|
||||||
REACT_APP_ALLOWED_URLS=
|
REACT_APP_ALLOWED_URLS=
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "web-wallet",
|
"name": "web-wallet",
|
||||||
"version": "0.1.7",
|
"version": "0.1.8",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cerc-io/registry-sdk": "^0.2.5",
|
"@cerc-io/registry-sdk": "^0.2.5",
|
||||||
|
|||||||
@ -6,28 +6,28 @@ export const EIP155 = 'eip155';
|
|||||||
export const COSMOS = 'cosmos';
|
export const COSMOS = 'cosmos';
|
||||||
|
|
||||||
export const DEFAULT_NETWORKS: NetworksFormData[] = [
|
export const DEFAULT_NETWORKS: NetworksFormData[] = [
|
||||||
|
{
|
||||||
|
chainId: 'laconic-mainnet',
|
||||||
|
networkName: 'laconicd mainnet',
|
||||||
|
namespace: COSMOS,
|
||||||
|
rpcUrl: import.meta.env.REACT_APP_LACONICD_RPC_URL,
|
||||||
|
blockExplorerUrl: 'https://explorer.laconic.com/laconic-mainnet',
|
||||||
|
nativeDenom: 'alnt',
|
||||||
|
addressPrefix: 'laconic',
|
||||||
|
coinType: '118',
|
||||||
|
gasPrice: '0.001',
|
||||||
|
isDefault: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
chainId: 'laconic-testnet-2',
|
chainId: 'laconic-testnet-2',
|
||||||
networkName: 'laconicd testnet-2',
|
networkName: 'laconicd testnet-2',
|
||||||
namespace: COSMOS,
|
namespace: COSMOS,
|
||||||
rpcUrl: import.meta.env.REACT_APP_LACONICD_RPC_URL!,
|
rpcUrl: 'https://laconicd-sapo.laconic.com',
|
||||||
blockExplorerUrl: '',
|
blockExplorerUrl: '',
|
||||||
nativeDenom: 'alnt',
|
nativeDenom: 'alnt',
|
||||||
addressPrefix: 'laconic',
|
addressPrefix: 'laconic',
|
||||||
coinType: '118',
|
coinType: '118',
|
||||||
gasPrice: '0.001',
|
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,
|
isDefault: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -10,7 +10,6 @@ services:
|
|||||||
CERC_DEFAULT_GAS_PRICE: ${CERC_DEFAULT_GAS_PRICE:-0.025}
|
CERC_DEFAULT_GAS_PRICE: ${CERC_DEFAULT_GAS_PRICE:-0.025}
|
||||||
CERC_GAS_ADJUSTMENT: ${CERC_GAS_ADJUSTMENT:-2}
|
CERC_GAS_ADJUSTMENT: ${CERC_GAS_ADJUSTMENT:-2}
|
||||||
CERC_LACONICD_RPC_URL: ${CERC_LACONICD_RPC_URL:-https://laconicd.laconic.com}
|
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}
|
CERC_ALLOWED_URLS: ${CERC_ALLOWED_URLS}
|
||||||
command: ["bash", "/scripts/run.sh"]
|
command: ["bash", "/scripts/run.sh"]
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@ -65,10 +65,7 @@ Instructions for running the `laconic-wallet-web` using [laconic-so](https://git
|
|||||||
CERC_GAS_ADJUSTMENT=
|
CERC_GAS_ADJUSTMENT=
|
||||||
|
|
||||||
# RPC endpoint of laconicd node (default: https://laconicd.laconic.com)
|
# RPC endpoint of laconicd node (default: https://laconicd.laconic.com)
|
||||||
CERC_LACONICD_RPC_URL=
|
CERC_LACONICD_RPC_URL=https://laconicd-mainnet-1.laconic.com
|
||||||
|
|
||||||
# Zenith RPC endpoint
|
|
||||||
CERC_ZENITHD_RPC_URL=
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Start the deployment
|
## Start the deployment
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user