diff --git a/docs/developers/intro.md b/docs/developers/intro.md index 0d3ee50..944aecd 100644 --- a/docs/developers/intro.md +++ b/docs/developers/intro.md @@ -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) -# Coming Soon \ No newline at end of file +# dApp Docs Coming Soon \ No newline at end of file diff --git a/docs/developers/jackaljs/intro.md b/docs/developers/jackaljs/intro.md index fc3fbc7..91f60ec 100644 --- a/docs/developers/jackaljs/intro.md +++ b/docs/developers/jackaljs/intro.md @@ -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 }