Frequently Asked Questions

Welcome to the DreyerX FAQ section. Here, you will find answers to the most commonly asked questions about the DreyerX network, its features, and how to use it effectively.

General Questions

What is DreyerX?

DreyerX is a blockchain project aimed at enhancing transaction speed on layer 1 blockchain networks. It utilizes the Clique Proof of Authority (PoA) consensus mechanism and supports various decentralized applications (dApps) similar to those on Ethereum.

What are the benefits of using DreyerX?

  • Increased Security: Robust security measures to protect user data and assets.

  • Regulatory Compliance: Adherence to regulatory standards.

  • Reduced Risk of Fraud: Enhanced mechanisms to minimize fraudulent activities.

  • Improved Scalability: Efficient handling of a growing number of transactions.

  • Enhanced Trust Among Users: Transparent operations fostering user trust.

  • Lower Costs: Reduced transaction fees and operational costs.

  • Faster Transaction Processing: Quick confirmation of transactions.

  • Transparency and Accountability: Clear and transparent governance and operational procedures.

Tokenomics

What is the total supply of DreyerX tokens?

The total supply of DreyerX tokens is 100,000,000.

What is the tokenomics structure for DreyerX?

  • Total Supply: 100,000,000

  • Buy & Sell Tax: 5%

  • Staking: 5%

  • CEX Listing: 5%

  • Decimals: 9

Parameter

Details

Total Supply

100,000,000

Buy & Sell Tax

5%

Staking

5%

CEX Listing

5%

Decimals

9

Using DreyerX

How do I create a DreyerX wallet using MetaMask?

  1. Install MetaMask extension on your browser or the MetaMask app on your mobile device.

  2. Follow the setup instructions to create a new wallet.

  3. Securely store your seed phrase.

How do I connect MetaMask to the DreyerX network?

  1. Open MetaMask and go to Settings.

  2. Select Networks and click Add a network.

  3. Enter the following information:

  4. Click Save.

How do I import an existing wallet into MetaMask?

  1. Open MetaMask and select Import Wallet.

  2. Enter your seed phrase or private key.

  3. Follow the prompts to complete the import process.

Development

How do I deploy a smart contract on DreyerX using Hardhat?

  1. Setup Development Environment:

    npm install --save-dev hardhat
  2. Create Hardhat Project:

    npx hardhat
  3. Install Dependencies:

    npm install --save-dev @nomiclabs/hardhat-ethers ethers
  4. Configure Hardhat:

    require("@nomiclabs/hardhat-ethers");
    module.exports = {
      networks: {
        dreyerx: {
          url: "https://testnet-rpc.dreyerx.com",
          chainId: 23452,
          accounts: [PRIVATE_KEY]
        }
      },
      solidity: "0.8.4",
    };
  5. Write and Deploy Contract:

    async function main() {
      const [deployer] = await ethers.getSigners();
      console.log("Deploying contracts with the account:", deployer.address);
    
      const Token = await ethers.getContractFactory("Token");
      const token = await Token.deploy();
    
      console.log("Token deployed to:", token.address);
    }
    
    main()
      .then(() => process.exit(0))
      .catch(error => {
        console.error(error);
        process.exit(1);
      });
  6. Deploy Contract:

    npx hardhat run scripts/deploy.js --network dreyerx

Troubleshooting

What should I do if my transaction is pending for a long time?

  • Check the network status on the DreyerX Block Explorer.

  • Increase the gas price using MetaMask's "Speed Up" option.

  • Cancel the transaction by sending a new transaction with a higher gas price to the same nonce.

How can I resolve connectivity issues with the DreyerX network?

  • Verify the DreyerX network configuration in MetaMask.

  • Clear your browser cache and restart your browser.

  • Ensure you are using the latest version of MetaMask.

  • Switch networks within MetaMask and then switch back to DreyerX.

What if my smart contract deployment fails?

  • Check the deployment parameters and ensure they are correct.

  • Increase the gas limit if necessary.

  • Review any error messages to identify and resolve the cause.

Security

How does DreyerX ensure network security?

DreyerX employs advanced security measures, including robust encryption, regular audits, and adherence to best practices in blockchain security.

What should I do if I suspect fraudulent activity?

Immediately report any suspicious activity to DreyerX support and avoid interacting with any untrusted sources.

Community Resources

Where can I find DreyerX community support?

Join the DreyerX community forum, participate in developer community events, and access the DreyerX Developer Grants Program for support and resources.

Governance

How does governance work on DreyerX?

Token holders have voting rights and can participate in decision-making processes such as protocol upgrades and parameter adjustments.

Last updated