1

I just have started to learn Smart Contract. I have to design front end in ASP.NET. Can I call Contract from it?

1 Answers1

1

The frontend interacts with smart contracts with a blockchain usually using web3.js and ethers.js. This is purely client-side code written in JavaScript.

On the backend side in C# you can use Nethereum.

A good starting point could be a Web3modal tutorial.

Mikko Ohtamaa
  • 22,269
  • 6
  • 62
  • 127