updating some references

This commit is contained in:
Marston Connell 2023-05-21 11:35:18 -04:00
parent 010917f907
commit 5ed8fadfe3
2 changed files with 10 additions and 9 deletions

View File

@ -2,7 +2,8 @@
sidebar_position: 2
---
# Getting Started
## Web-Apps
To get started building web apps that leverage Jackal, head over to the [Jackal.js Quickstart](./jackaljs/intro.md)
<!-- ## Dependencies
* Golang
@ -29,4 +30,4 @@ Golang is required to build the [canined](#canined) binary. Get [Golang](https:/
## Docker -->
# Coming Soon
# dApp Docs Coming Soon

View File

@ -9,19 +9,19 @@ To get started using Jackal in the browser, you'll need a few things!
### Pre-requesites
* Node.js
* [Node.js](https://nodejs.org/en/download)
* [Jackal.js](https://www.npmjs.com/package/jackal.js)
* Vite
* Keplr
* [Vite](https://vitejs.dev/)
* [Keplr](https://www.keplr.app/)
### Setting Up
To get started, make sure you start your project using vite. If you have an existing React app for example, re-init the project using vite.
To get started, make sure you start your project using Vite. If you have an existing React app for example, re-init the project using Vite.
### Connecting Your Wallet
```js
const chainConfig = {
const chainConfig = { // mainnet chain config
chainId: 'jackal-1',
chainName: 'Jackal',
rpc: 'https://rpc.jackalprotocol.com',
@ -69,8 +69,8 @@ const walletConfig = {
selectedWallet: 'keplr',
signerChain: 'jackal-1',
enabledChains: ['jackal-1'],
queryAddr: 'https://kdb -grpc.jackalprotocol.com',
txAddr: 'https://kdb-rpc.jackalprotocol.com',
queryAddr: 'https://grpc.jackalprotocol.com',
txAddr: 'https://rpc.jackalprotocol.com',
chainConfig: chainConfig
}