Getting Started
To begin using the KrypCore Web3 SDK, follow the steps below:
Step 1: Create a Dapp using Dapp Studio
Access the KrypCore Web3 platform and navigate to the Dapp Studio section.
Create a new Dapp project and configure it according to your requirements.
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
Install the KrypCore Web3 SDK package using your preferred package manager
Import the SDK into your application
Specify the path to the downloaded config file
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
// 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)
Last updated
Was this helpful?