🏅Hacker's getting started resources

Quick-start resource if you are hacking and need to integrate with Planq.

Overview of Planq chain

Planq A leading Ethereum-compatible layer 1 blockchain network built on the Cosmos SDK, supported by Leap Wallet, and more than At Planq, the vision is to create a global community empowered by our mobile-first decentralized permissionless ecosystem, where financial freedom is accessible and transparent for all, not just the wealthy and fortunate.

How to stand out and win in a Web3 hackathon 🥇

Check out our blog post.

Hack with Planq

Developing dApps on Planq is as easy as developing them on any of the major EVM-compatible chains: write and test solidity with Hardhat, deploy your contract, connect your frontend or your backend with ethers.js, and connect your wallet with MetaMask or Leap Wallet.

The native cryptocurrency of Planq mainnet is $PLQ, while the testnet uses TPLQ.

Planq overview & key links for developers

MetaMask end-user configuration

JSON-RPC endpoint configuration

  • For most use cases you can use the free endpoints that are provided by Planq. Most developers use a configuration file that looks like this:

    For Hardhat:

    {
    "planq_mainnet": {
          "chainId": 7070,
          "url": "https://evm-rpc.planq.network/",
          "gasPrice": 5000000000000,
          "blockExplorer": "https://evm.planq.network/",
          "blockExplorerPrefix": "https://evm.planq.network/tx/"
        }    
    }

    or, using EIP1559 in a Node.js backend:

    {
    "planq_mainnet": {
          "id": 7070,
          "url": "https://evm-rpc.planq.network/",
          "maxPriorityFeePerGas": 5000000000,
          "maxFeePerGas": 6000000000000,
          "blockExplorer": "https://evm.planq.network/",
          "blockExplorerPrefix": "https://evm.planq.network/tx/"
        }
    }

Essential developer tools 💻

Write, test and deploy smart contracts

Connect your Dapp to the blockchain

Developer support ☎️

Please visit the #general channel on the Planq Discord server.

Feedback is a gift! Let us know if there is anything that we can improve in this documentation.

Socials: Twitter | Telegram | Discord

Last updated