# Getting Started

To begin using the KrypCore Web3 SDK, follow the steps below:

### Step 1: Create a Dapp using Dapp Studio

1. Access the KrypCore Web3 platform and navigate to the Dapp Studio section.
2. Create a new Dapp project and configure it according to your requirements.
3. Once your Dapp is configured, click on the "Download Config File" button. This file contains the necessary configuration settings for your Dapp.

### Step 2: Set Up the SDK in your Application

1. Install the KrypCore Web3 SDK package using your preferred package manager
2. Import the SDK into your application
3. Specify the path to the downloaded config file
4. Initialize the SDK with the config file

### Step 3: Use the SDK in your Application

Now that the SDK is set up, you can start using its functionalities to interact with the blockchain and build decentralized features in your application.

## Example Code

```javascript
// Import the KrypCore Web3 SDK
const krypcore_web3_sdk = require("krypcore-web3-sdk")

// Specify the path to the config file
const configFilePath = '../../config.json'

// Initialize the SDK with the config file
const Web3Engine = new krypcore_web3_sdk.Web3Engine(configFilePath)

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.krypcore.com/dev-docs/sdk-reference/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
