2

I am currently in the process of integrating the frontier with the solo chain. Following the integration, when I attempted to deploy the contract using Remix, it appears to be stuck, with no observable activity on the chain. Could you provide assistance in pinpointing the root cause of this problem?

Substrate version: v1.0.0

Have attached the screenshot for the same.

enter image description here

2
  • No logs on your node or events triggered on the chain that can help debug the issue?
    – Alex Bean
    Commented Sep 4, 2023 at 7:07
  • You can try clearing your "account activity" or nonces on metamask as that's a common issue for metamask to hang and prevent any transactions from going through. A common obstacle when developing with frontier. If that doesn't help, we can't help much without looking at your frontier integration. Commented Sep 4, 2023 at 9:52

1 Answer 1

1

You should have these lines in services.rs:

    let FrontierPartialComponents {
        filter_pool,
        fee_history_cache,
        fee_history_cache_limit,
    } = new_frontier_partial(&eth_config)?;

I have integrate the the frontier in the fresh node template with babe. You can refer here: https://github.com/Aideepakchaudhary/Substrate-node-template-with-babe-and-frontier

Thanks!

1
  • Seems you removed the h160 unified account for it, any reason ? or you plan to apply it ?
    – Dubs
    Commented Oct 10, 2023 at 22:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.