SDK Initialization
To initialize the SDK, you need to provide your API key and the RPC URL of the blockchain network.
API Key: Your unique identifier used to authenticate requests to the KOR Protocol backend. Please fill this form to obtain an api key https://u0d76il5b5y.typeform.com/korSDKsignup.
RPC URL: This is the URL of the blockchain network you are connecting to. It could be the URL of a public or private Ethereum node.
Chain: This is the id of the chain on which operations should be performed. *Note: Currently only base sepolia (chain id: 84532) is supported.
Origin: Initializes the module in a sandbox/production environment. For sandbox environment use https://dq9c2zl6kih9v.cloudfront.net/kor-sdk-api
Recaptcha Token: If you have configured Google Invisible reCAPTCHA by providing the site key and site secret, you need to execute reCAPTCHA on the front end using Google's
grecaptcha.execute
function to generate a reCAPTCHA token. This token must be passed during SDK initialization for validation.
Please ensure that the domain is properly configured while creating the site key in the Google reCAPTCHA admin console.
If Google reCAPTCHA is not configured, this field is optional.
By using the initialiseKorSDK method from the @kor_protocol/core-sdk
package, you can create an instance of the SDK by providing these parameters. This instance will allow you to interact with the KOR Protocol APIs and perform various KOR Protocol operations.
Last updated