Contracts on AssetHub Roadmap

Yes those RPCs will be available. List of available RPCs: polkadot-sdk/substrate/frame/revive/rpc/codegen/src/generator.rs at pg/revive-rpc-server · paritytech/polkadot-sdk · GitHub

The tracing RPCs will come after we are on Westend. They need some more work. Talking about those two:

debug_traceBlockByNumber
debug_traceTransaction

So far we don’t have a well thought out release plan. It is a but more complicated since there are two versions involved: The solc version + the resolc version. So we kind of need to construct a matrix of versions we want to release. And yes we plan to release them as dockers.

1 Like

As an alternative to etherscan, there’s a new cool kid on the block called scope, most of it is open source too:

Code: GitHub - scope-sh/contract-scan: Cross-chain smart contract search
UI: https://scope.sh/

3 Likes

Looks cool!

Hey, sorry for asking a question far at a far later than it should have been asked, but for the sake of context and documentation, what was the thinking around going down this path with PolkaVM, rather than just jumping on top of Frontier which was pretty proven and battle tested?

One clear downside is the time to integrate this stuff into the Polkadot Hub.

So what were the major upsides? What kind of long term gains can we expect because of this decision?

Any major drawbacks for someone who would want to argue the other side?

No need to write a whole new answer if it was already written somewhere. Please just link me.

2 Likes

The main reasons can be found in this post, other posts and in #885. They are indeed a bit scattered, let me quickly summarize:

  1. Frontier does not allow using existing AccountId32 accounts
  2. The EVM does not cut our performance requirements, add to that we found the Frontier EVM implementations to be even slower than the reference EVM
  3. Frontier does not support other contract Languages than EVM based ones. And adding multiple runtimes for supporting other Languages brings it’s own problems.
  4. Frontier, once added, can not be removed again
  5. We expect parts of our stack to be directly re-usable with JAM

Those translate roughly to the following long term gains:

  1. Seamless integration, better user experience
  2. Unlock new contract use cases which are currently impossible on any non-domain-specific blockchain ecosystem
  3. Enables building a more diverse and bigger contract ecosystem, in turn allowing adoption and market share to grow way beyond the scope of EVM
  4. Avoiding major maintenance burdens
  5. Less time and effort required once JAM is around the corner

TL;DR: With our PVM based solution Polkadot will offer a superior, innovative and future-proof contracts product instead of being just another Ethereum side-chain. (There is nothing wrong with Ethereum side-chains, they are great but note that this problem is already being solved in our ecosystem)

Personally I’d like to add that I think it’s fair to say that we are moving relatively fast. The additional time spent is only in the realm of a couple months.

11 Likes
  • How do the EVM assets (tokens, NFTs, etc.) interoperate with the Assets and NFTs pallets?
  • How do the foreign chains interoperate with EVM assets?
  • How to swap/convert pallet assets and EVM assets?
  • From the Parity point of view, what is the relationship between Assets/NFTs pallets and contracts? Do you mean to sunset those pallets?
1 Like

Would it be possible to deploy ink contract support more immediately and then add EVM support once complete?

1 Like

At least for fungible tokens we are planning to emulate one ERC20 contract per asset on pallet_asset. Basically having a contract address prefix that determines that this is an asset and then using the rest of the bytes to encode the asset id. For NFT we need to check if there are standards which match well to the existing NFT pallet. But we should change the pallet so that they do if not. The goal here should be that contracts can interact with assets hold in pallets the same way as if they were a contract.

You can also imagine that stable coins like USDT will deploy a shim contract that doesn’t hold the actual asset in its state but forwards the call to pallet_asset. Setting the owner of the asset to the contract. That will allow them some degree of programability without conceding the upsites of being on pallet_asset. Not sure if that is a useful, though. They might want to completely migrate to a contract to take full control over balance transfers.

As everything regarding cross chain interactions this seems to be an open question. Esepcially how to do this in a user friendly way. Hence the push to centralize the platform. However, we will have XCM support within contracts and given a demand there will pop up ways to do this.

An DEX deployed as a smart contract platform will access pallet_asset assets just like any other ERC20 contract. Hence this will “just work”.

As of right now the plan is to give contracts access to those assets by emulating various Ethereum standards as mentioned above. If we notice that they are no longer needed to could think about an automatic migration path. But this is not planned.

Most of the work is actually making the system Ethereum RPC compatible and testing all the various developer tools and javascript frameworks against it. Something that is also necessary for ink! since the plan is that you can write a Dapp that works for both. Of course you could just use ink! as-is and rely on Polkadot.js to write ups. However, that fragments the ecosystem and we could never keep up with the tooling meant for Eth developers.

So the plan for ink! has to also profit from this. Basically making ink! a drop in replacement for Solidity contracts but the rest stays the same. You would still interact with the ink! contract using Meta mask and the Web frontend is only written once (e.g using ether.js).

Basically was ink! has to do to not be dead on arrival is to drop their custom ABI and also use the Ethereum ABI. Otherwise they won’t be able to use Metamask nor would they be ale to be called from Solidity contracts. If you are the underdog: Be compatible. Be a drop in replacement. Then at least the people who want can use it.

6 Likes

Chiming in to promote ink! :slight_smile:

At this moment, the ink! alliance is working on making ink! compile to PVM, allowing ink! smart contracts to be deployed on Polkadot just like Solidity-based contracts.

Once that milestone is achieved, it might be a significant point for the alliance to start considering the Ethereum ABI, enabling both ink! contracts and EVM-compatible contracts not only to run on the same VM but interact with each other. Step by step.

:sparkles: As of today, the following js libraries and utils work nicely with ink! and can be used to build dapps:

7 Likes
  • Writing contracts in Solidity and deploying them to Polkavm, does this mean we still use ECDSA signatures and keccak256 hash functions? Are there any precompiles that can use Polkadot’s sr25519 signatures and blake2 hash functions?** ECDSA seems to have become a problem for Ethereum. Using sr25519 on Polkavm might be a solution for account abstraction.
  • I’m using Foundry+viem; Hardhat and Ethers.js seem outdated. Is there any plan to support viem?
  • Is there anything similar to the randomness precompile on Moonbeam?** VRF is very necessary for many smart-contract.
1 Like
  • polkadot-sdk already has account abstraction and precompiles will be supported
  • We already have a working viem example, foundry will be supported
  • On-chain randomness will be supported, for example with this
1 Like

thanks a lot

@Alex I tested out the JSON-RPC for integration and things are looking good – but, I found a couple of issues here. These are the 2 bottlenecks for EAAS integration:

  1. we need to get
  1. we need a revive-built contracts verifier in Docker form, even a PoC

Can this be ready in Jan/Feb or March? Need it to be Q1 to get in the queue! :hugs:

Yes this is planned. @pgherveou has a WIP PR for that but we is currently busy with building an indexer so the links within Metamask work.

Yeah we should build a docker in our release pipeline. But I am not sure how exactly that docker should look like. Do you have more precise requirements?

Not precise – any Docker design that matches the etherscan.io/verifyContract flow (contract address, chainid, solc metadata, code format, code) and comes back with bytecode that matches “eth_getCode” or with error diagnostics works.

1 Like

@Alex @Cyrill @koute @rphmeier : I posted OpenGov Proposal #1345 - Etherscan-as-a-Service x Polkadot Hub - PolkaVM Block Explorer (1 Mainnet, 1 Testnet) (Detailed proposal) – Thank you all so much for your leadership and execution this year, we are super optimistic 2025 is going to be awesome!

Excellent video from @bruno showing how easy it is to get started!

4 Likes

Hello,

As it is very important for the success of contracts on AH I would like to hear people’s opinion regarding Discussion: Treating Changes in Dispatchable Function Errors as Breaking Changes

Thanks in advance!

Hi All - for Solidity on Polkadot to be useful, I see the need to be able to:

  1. Do cross-contract interactions (instantiation, calls)
    • Is this already possible? Can you share an example?
  2. Do Polkadot cross-chain calls
    • The ability to send raw XCM from a Solidity contract
    • There should an abstracted approach as well for those who want to hit-the-ground running building cross-chain solutions on Polkadot w/ Solidity without having to become an XCM expert
    • Can we please add integrating Polytope Labs’ ISMP to the roadmap? Or provide an alternative solution that you will commit to and add to the short-term roadmap
      • We cannot create real-world, meaningful cross-chain solutions on Polkadot without being able to guarantee cross-chain execution
  3. Do wider ecosystem cross-chain calls
    • e.g. call a Solidity contract on Ethereum
    • Could be a good use-case for Hyperbridge and/or Snowbridge
  4. Polkadot infrastructure on the Ethereum side
    • Snowbridge already started this with its agent contracts
    • We need to create a “hub” of contracts on the Ethereum side that makes it easy to build cross-chain contract solutions
      • e.g. an out-of-the-box Polkadot Hub compatible DEX on Ethereum
  5. Precompiles to access underlying runtime features
    • Polkadot Hub runtime
      • a wrapper for smart contract developers to interact with Polkadot Hub pallet methods that are whitelisted
  6. Efficiency in fees
3 Likes

is smoldot support polkavm?or json rpc api proxy?