-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ian/update-names-keychain-namadillo' (#391)
update keychain and namadillo names
- Loading branch information
Showing
5 changed files
with
60 additions
and
48 deletions.
There are no files selected for viewing
32 changes: 15 additions & 17 deletions
32
packages/docs/pages/integrating-with-namada/interface.mdx
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,34 +1,32 @@ | ||
# Namada Interface | ||
|
||
## Front end development with Namada | ||
The [namada-interface repository](https://github.com/anoma/namada-interface) is a monorepo which contains the Namada browser extension | ||
and associated Namada-Interface web app. It's a great resource for developers wishing to understand how to incorporate the Namada SDK | ||
The [namada-interface repository](https://github.com/anoma/namada-interface) is a monorepo that contains the Namada Keychain browser extension | ||
and associated Namadillo web app. It's a great resource for developers wishing to understand how to incorporate the Namada SDK | ||
into their front-end applications. | ||
|
||
### Installing from source (for development and experiment purposes) | ||
|
||
#### Connect to a testnet or run a local node | ||
1. Follow the instructions for the [testnets](../networks/testnets.mdx) to connect to a testnet or [set up a local node](../operators/networks/local-network.mdx). | ||
2. Figure out where the base directory is stored and save its location as a variable such as `export BASE_DIR=<path/to/base/dir>`. | ||
You can follow [these docs](../networks/testnets/migrating-testnets.mdx) to save this variable. Go ahead and save the chain id as a variable as well. You can find the chain id by running `cat $BASE_DIR/global-config.toml`. Save this chain-id to the variable `export CHAIN_ID=<CHAIN_ID>`. | ||
3. You will need to edit the CometBFT config in order to allow the web wallet to connect to your node. | ||
The CometBFT config will be located in `$BASE_DIR/$CHAIN_ID/cometbft/config/config.toml`. You will need to change the `cors_allowed_origins` field to `["*"]`. You can do this by running | ||
1. Follow the instructions for the [testnets](../networks/testnets.mdx) to connect to a testnet or [set up a local node](../networks/starting-network/local-network.mdx). | ||
2. Figure out where the base directory is stored and save its location in an environment variable with something like `export BASE_DIR=<path/to/base/dir>`. | ||
You can follow [these docs](../networks/testnets/migrating-testnets.mdx) to save this variable. Consider saving the chain ID as an environment variable as well. | ||
You can find the chain ID by running `cat $BASE_DIR/global-config.toml`. Save this chain-id to the environment variable `export CHAIN_ID=<CHAIN_ID>`. | ||
3. You will need to edit the CometBFT config in order to allow Namadillo to connect to your node. | ||
The CometBFT config will be located in `$BASE_DIR/$CHAIN_ID//config.toml`. You will need to change the `cors_allowed_origins` field to `["*"]`. You can do this by running | ||
```shell copy | ||
sed -i 's/cors_allowed_origins = \[\]/cors_allowed_origins = ["*"]/' \ | ||
$BASE_DIR/$CHAIN_ID/cometbft/config/config.toml | ||
$BASE_DIR/$CHAIN_ID/config.toml | ||
``` | ||
|
||
#### Setting up the extension | ||
#### Setting up the Namada Keychain extension | ||
1. Clone the [namada-interface repository](https://github.com/anoma/namada-interface). | ||
2. Follow the installation instructions in `README.md`. | ||
3. `cd` into the `namada-interface/apps/extension` directory and run `yarn start:chrome`. This will build the extension and place it in the `namada-interface/apps/extension/build` directory. It also starts the dev server which will watch for changes. | ||
4. `cd` into the `namada-interface/apps/namada-interface` directory and run `yarn dev:local` in order to launch a local instance of the web wallet. | ||
3. `cd` into the `namada-interface/apps/extension` directory and run `yarn start:chrome`. This will build the Namada Keychain extension and place it in `namada-interface/apps/extension/build/chrome`. It also starts the dev server which will watch for changes. | ||
4. `cd` into the `namada-interface/apps/namadillo` directory and run `yarn dev` in order to launch a local instance of Namadillo. | ||
4. Add the extension to the browser. For example, in Chrome, you can go to `chrome://extensions/` and click `Load unpacked` and select the `namada-interface/apps/extension/build/chrome/` folder. | ||
|
||
## Receiving tokens | ||
You can show the address of any account by pressing the `Receive` button in the initial view under the "Total Balances" tab. You can copy the address by clicking the copy icon next to the address. | ||
This will also display a QR code that can be scanned by a mobile wallet. | ||
|
||
## Sending Transactions | ||
|
||
In order to send transactions, you can press the `Send` button in the initial view under the "Total Balances" tab. This will open a modal that will allow you to send tokens to any account, from any account in your wallet that has a positive balance. | ||
You can show the address of the current account by hovering over the account name in the top right corner. Clicking it will copy it to the clipboard. | ||
You can copy the address by clicking the copy icon next to the address. | ||
This will also display a QR code that can be scanned by a mobile wallet. |
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,5 +1,5 @@ | ||
{ | ||
"file-system-wallet": "File system wallet", | ||
"web-wallet": "Web wallet", | ||
"web-wallet": "Keychain (browser extension)", | ||
"hardware-wallet": "Hardware wallet" | ||
} |
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