Migration Guide
This document is a reference for those who want to migrate their BApps from their individual ENs to KAS. It will mainly deal with the differences between using EN and KAS.
const accessKeyId = "{{your_accessKeyId}}"; const secretAccessKey = "{{your_secretAccessKey}}"; const option = { headers: [ {name: 'Authorization', value: 'Basic ' + Buffer.from(accessKeyId + ':' + secretAccessKey).toString('base64')}, {name: 'x-chain-id', value: '8217'}, ] } const caver = new Caver(new Caver.providers.HttpProvider("https://node-api.klaytnapi.com/v1/klaytn", option))
Last updated