<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Developers Forum for XinFin XDC Network: sudip kumar palit</title>
    <description>The latest articles on Developers Forum for XinFin XDC Network by sudip kumar palit (@sudip_kumarpalit_e0bc553).</description>
    <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553</link>
    <image>
      <url>https://www.xdc.dev/images/M6seGCb4AH7MuhpvVohDZ_XgLxip4-UMXSuaszAcSgQ/rs:fill:90:90/mb:500000/ar:1/aHR0cHM6Ly93d3cu/eGRjLmRldi91cGxv/YWRzL3VzZXIvcHJv/ZmlsZV9pbWFnZS8z/MjQxL2IzNjMwNTNm/LTliNDMtNDNjNy1h/ZGQwLWY5ZjM4MjY4/NGQwNy5wbmc</url>
      <title>Developers Forum for XinFin XDC Network: sudip kumar palit</title>
      <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.xdc.dev/feed/sudip_kumarpalit_e0bc553"/>
    <language>en</language>
    <item>
      <title>Unable to deploy the Checkpoint Smart Contract</title>
      <dc:creator>sudip kumar palit</dc:creator>
      <pubDate>Tue, 13 Aug 2024 09:57:33 +0000</pubDate>
      <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553/unable-to-deploy-the-checkpoint-smart-contract-2ocn</link>
      <guid>https://www.xdc.dev/sudip_kumarpalit_e0bc553/unable-to-deploy-the-checkpoint-smart-contract-2ocn</guid>
      <description>&lt;p&gt;"~/XinFin-Node/subnet/deployment-generator/generated$ docker run --env-file common.env   \&lt;br&gt;
    -v $(pwd)/../generated/:/app/config       \&lt;br&gt;
    --network host                             \&lt;br&gt;
    --entrypoint './docker/deploy_proxy.sh' xinfinorg/csc:v0.1.1&lt;/p&gt;

&lt;p&gt;Error: deploy to parentnet node failure , pls check the parentnet node status&lt;br&gt;
    at main (/app/scripts/proxy/ProxyGatewayDeploy.js:14:11)&lt;br&gt;
npm notice&lt;br&gt;
npm notice New major version of npm available! 9.5.0 -&amp;gt; 10.8.2&lt;br&gt;
npm notice Changelog: &lt;a href="https://github.com/npm/cli/releases/tag/v10.8.2"&gt;https://github.com/npm/cli/releases/tag/v10.8.2&lt;/a&gt;&lt;br&gt;
npm notice Run &lt;code&gt;npm install -g npm@10.8.2&lt;/code&gt; to update!&lt;br&gt;
npm notice"&lt;br&gt;
The above error is shown while try to deploy the Checkpoint Smart Contract. Need Help.&lt;/p&gt;

</description>
      <category>wip</category>
    </item>
    <item>
      <title>Unable to connect with https://faucet.blocksscan.io/. and unable to create subnet</title>
      <dc:creator>sudip kumar palit</dc:creator>
      <pubDate>Tue, 13 Aug 2024 07:17:53 +0000</pubDate>
      <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553/unable-to-connect-with-httpsfaucetblocksscanio-and-unable-to-create-subnet-1a</link>
      <guid>https://www.xdc.dev/sudip_kumarpalit_e0bc553/unable-to-connect-with-httpsfaucetblocksscanio-and-unable-to-create-subnet-1a</guid>
      <description>&lt;p&gt;I am unable to get xdc from &lt;a href="https://faucet.blocksscan.io/"&gt;https://faucet.blocksscan.io/&lt;/a&gt;. I require this to create subnet. I have given the account number of XDCPay, but the page is reloading for infinite time.  If any other faucet is available, please let me know. I am trying to create XDC subnet by taking help from the youtube tutorial &lt;a href="https://youtu.be/VwfI4VTMUnY"&gt;https://youtu.be/VwfI4VTMUnY&lt;/a&gt; given in the &lt;a href="https://xinfin.org/xdc-subnet"&gt;https://xinfin.org/xdc-subnet&lt;/a&gt;. In this tutorial the file docker.env.example file exist in the deployment-generator directory, but in my PC it exist under deployment-generator/script directory. Therefore I am not sure, using this video, can I create the subnet or not. Please guide me. &lt;/p&gt;

</description>
      <category>wip</category>
    </item>
    <item>
      <title>Error while compiling the contract file</title>
      <dc:creator>sudip kumar palit</dc:creator>
      <pubDate>Thu, 25 Jul 2024 15:35:43 +0000</pubDate>
      <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553/error-while-compiling-the-contract-file-88g</link>
      <guid>https://www.xdc.dev/sudip_kumarpalit_e0bc553/error-while-compiling-the-contract-file-88g</guid>
      <description>&lt;p&gt;My .env file's content is XINFIN_NETWORK_URL=&lt;a href="https://rpc.apothem.network"&gt;https://rpc.apothem.network&lt;/a&gt;&lt;br&gt;
XINFIN_PRIVATE_KEY=1234567890.............. (64 character long )&lt;br&gt;
My hardhat.config.js is &lt;br&gt;
require("@nomicfoundation/hardhat-toolbox");&lt;br&gt;
require("dotenv").config({ path: ".env" });&lt;/p&gt;

&lt;p&gt;const XINFIN_NETWORK_URL = process.env.XINFIN_NETWORK_URL;&lt;br&gt;
const XINFIN_PRIVATE_KEY = process.env.XINFIN_PRIVATE_KEY;&lt;/p&gt;

&lt;p&gt;if (!XINFIN_NETWORK_URL || !XINFIN_PRIVATE_KEY) {&lt;br&gt;
  throw new Error("Please set XINFIN_NETWORK_URL and XINFIN_PRIVATE_KEY in the .env file");&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;module.exports = {&lt;br&gt;
  solidity: "0.8.24",&lt;br&gt;
  networks: {&lt;br&gt;
    xinfin: {&lt;br&gt;
      url: XINFIN_NETWORK_URL,&lt;br&gt;
      accounts: [XINFIN_PRIVATE_KEY ],},&lt;br&gt;
  },&lt;br&gt;
};&lt;br&gt;
While trying to compile the .sol file in contract folder of the hardhat project the following error message is shown: &lt;br&gt;
Error: Please set XINFIN_NETWORK_URL and XINFIN_PRIVATE_KEY in the .env file&lt;br&gt;
    at Object. (/home/skp/xdc-hardhat/hardhat.config.js:8:9)&lt;br&gt;
    at Module._compile (node:internal/modules/cjs/loader:1358:14)&lt;br&gt;
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1416:10)&lt;br&gt;
    at Module.load (node:internal/modules/cjs/loader:1208:32)&lt;br&gt;
    at Function.Module._load (node:internal/modules/cjs/loader:1024:12)&lt;br&gt;
    at Module.require (node:internal/modules/cjs/loader:1233:19)&lt;br&gt;
    at require (node:internal/modules/helpers:179:18)&lt;br&gt;
    at importCsjOrEsModule (/home/skp/xdc-hardhat/node_modules/hardhat/src/internal/core/config/config-loading.ts:29:22)&lt;br&gt;
    at loadConfigAndTasks (/home/skp/xdc-hardhat/node_modules/hardhat/src/internal/core/config/config-loading.ts:95:18)&lt;br&gt;
    at main (/home/skp/xdc-hardhat/node_modules/hardhat/src/internal/cli/cli.ts:218:62)&lt;/p&gt;

&lt;p&gt;Please help me out from this problem&lt;/p&gt;

</description>
      <category>xdc</category>
      <category>error</category>
      <category>hardhat</category>
      <category>wip</category>
    </item>
    <item>
      <title>Hi everyone. I am new in this environment, but want to learn and develop in this environment.</title>
      <dc:creator>sudip kumar palit</dc:creator>
      <pubDate>Thu, 25 Jul 2024 15:22:14 +0000</pubDate>
      <link>https://www.xdc.dev/sudip_kumarpalit_e0bc553/hi-everyone-i-am-new-in-this-environment-but-want-to-learn-and-develop-in-this-environment-4p85</link>
      <guid>https://www.xdc.dev/sudip_kumarpalit_e0bc553/hi-everyone-i-am-new-in-this-environment-but-want-to-learn-and-develop-in-this-environment-4p85</guid>
      <description></description>
    </item>
  </channel>
</rss>
