Skip to content

Commit

Permalink
docs: add "how to create account" to keplr page (#941)
Browse files Browse the repository at this point in the history
* add "how to create account" to keplr page

* Update keplr.mdx
  • Loading branch information
jcstein authored Aug 17, 2023
1 parent 16f2831 commit f02bad2
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions docs/developers/keplr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,30 +25,42 @@ export const MOCHA_PARAMS = {
rpc: 'https://rpc-mocha.pops.one',
rest: 'https://api-mocha.pops.one'
}
export const BLOCKSPACERACE_PARAMS = {
chainId: 'blockspacerace',
chainName: 'Blockspace Race Testnet',
rpc: 'https://rpc-blockspacerace.pops.one',
rest: 'https://api-blockspacerace.pops.one'
}
````

Keplr is a popular Cosmos-based wallet that allows anyone
to connect to Tendermint chains from their browser.

You can learn more about installing Keplr [here](https://www.keplr.app/download).

In this tutorial, we will have an interactive demo that goes over how
you can add Celestia network parameters to Keplr.

Most of the overview of integration are found on Keplr's website
Most of the overview of this integration are found on Keplr's website
[here](https://docs.keplr.app/api).

For our demonstration, we converted the Keplr code on their docs
to React components in order to demonstrate how you can add a Celestia
network to Keplr from inside the docs.

## Install Keplr

You can learn more about installing Keplr [here](https://www.keplr.app/download).

## Create an account

To learn how to create an account on Keplr, you can follow this [guide](https://www.keplr.app/onboarding/how-to-create).

For all wallet types, follow steps 1-2 in the guide linked above to set up Keplr.

Then, there are two ways to create an account:
* In Keplr (1)
* If you are using Keplr, once you finish step 5, you should be able to
see your account in the Keplr extension. Now, you can add a Celestia
network to Keplr below.
* Using a hardware wallet (2)
* If you are using a hardware wallet, follow steps 8-10 to create an
account with your hardware wallet. Once you finish step 10, you should
be able to see your account in the Keplr extension. Now, you can add a
Celestia network to Keplr below.

## Add Celestia network to Keplr

Before we demonstrate how to export the specific parameters for
Expand Down Expand Up @@ -147,7 +159,7 @@ first.

````mdx-code-block
<Tabs groupId="keplr-network-selection">
<TabItem value="blockspacerace" label="Blockspace Race">
{/* <TabItem value="blockspacerace" label="Blockspace Race">
Here is a demo button that allows you to
add the blockspace race testnet to Keplr.
Expand All @@ -171,7 +183,7 @@ export const BLOCKSPACERACE_PARAMS = {
<AddNetworkKeplr params={BLOCKSPACERACE_PARAMS}/>
```
</TabItem>
</TabItem> */}
<TabItem value="mocha" label="Mocha">
Here is a demo button that allows you to
Expand Down

0 comments on commit f02bad2

Please sign in to comment.