From 334e6caf5a1377fa0b2c68092591320007cd5e38 Mon Sep 17 00:00:00 2001 From: Nidz The Fact <106298826+nidz-the-fact@users.noreply.github.com> Date: Tue, 18 Jun 2024 23:28:14 +0700 Subject: [PATCH 1/2] Update wallet.mdx fix + added chain-info.json - (testnet) --- docs/lava-blockchain/wallet.mdx | 63 +++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 7 deletions(-) diff --git a/docs/lava-blockchain/wallet.mdx b/docs/lava-blockchain/wallet.mdx index bbdaef56..ef978787 100644 --- a/docs/lava-blockchain/wallet.mdx +++ b/docs/lava-blockchain/wallet.mdx @@ -332,12 +332,61 @@ lavad tx broadcast ms/tx_ms.json --chain-id lava-testnet-2 :::warning experimental This section is for advanced users. ::: -Use the following parameters to set up a wallet not described in this manual: +Use the following parameters to set up a wallet not described in this manual (testnet): -* **coinType** - 118 (standard cosmos wallet type) -* **minimal denom** - ulava -* **prefix** - lava@ -* **coinDecimals** - 6 -* **rpc** - "https://public-rpc.lavanet.xyz" -* **rest** - "https://public-rpc.lavanet.xyz/rest" +| Name | Value | +| ------------------ | --------------------------------------------------- | +| coinType | 118 (standard cosmos wallet type) | +| minimal denom | ulava | +| prefix | 6 | +| rpc | https://public-rpc.lavanet.xyz | +| rest | ttps://public-rpc.lavanet.xyz/rest | +chain-info.json - (testnet) +```bash +{ + "chainId": "lava-testnet-2", + "chainName": "Lava Testnet", + "rpc": "https://public-rpc.lavanet.xyz", + "rest": "https://public-rpc.lavanet.xyz/rest", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "lava@", + "bech32PrefixAccPub": "lava@pub", + "bech32PrefixValAddr": "lava@valoper", + "bech32PrefixValPub": "lava@valoperpub", + "bech32PrefixConsAddr": "lava@valcons", + "bech32PrefixConsPub": "lava@valconspub" + }, + "currencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinGeckoId": "lava" + } + ], + "feeCurrencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinGeckoId": "lava", + "gasPriceStep": { + "low": 0.000001, + "average": 0.025, + "high": 0.03 + } + } + ], + "stakeCurrency": { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinGeckoId": "lava" + }, + "beta": true +} +``` From 667d7895c5094d485becdd6f50e8c9ad216caf08 Mon Sep 17 00:00:00 2001 From: Nidz The Fact <106298826+nidz-the-fact@users.noreply.github.com> Date: Tue, 18 Jun 2024 23:34:09 +0700 Subject: [PATCH 2/2] Update wallet.mdx --- docs/lava-blockchain/wallet.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lava-blockchain/wallet.mdx b/docs/lava-blockchain/wallet.mdx index ef978787..2ab7a63d 100644 --- a/docs/lava-blockchain/wallet.mdx +++ b/docs/lava-blockchain/wallet.mdx @@ -340,7 +340,7 @@ Use the following parameters to set up a wallet not described in this manual (te | minimal denom | ulava | | prefix | 6 | | rpc | https://public-rpc.lavanet.xyz | -| rest | ttps://public-rpc.lavanet.xyz/rest | +| rest | https://public-rpc.lavanet.xyz/rest | chain-info.json - (testnet) ```bash