Tom Keidar
Tom Keidar

Reputation: 21

is there any other way to interact with Ethereum's smart contracts via UI besides Etherscan?

I'm aware of Etherscan's capability for interactions with smart contracts on the Ethereum network, but I wonder if there is any other way to read and write from smart contracts.

I'd expect an improved UI/UX usability, allowing input validation, adding documentation on top of the contract etc, yet I couldn't find any other service providing it.

etherscan - smart contract interaction screenshot

Upvotes: 2

Views: 1463

Answers (3)

Qwerty
Qwerty

Reputation: 32078

Both tools presented below load the ABI automatically from the contract address.

eth95.dev

There is one that looks like old Windows 95 app. Pretty cool.

https://eth95.dev/

enter image description here



mycrypto.com

https://app.mycrypto.com/interact-with-contracts

enter image description here

Upvotes: 0

Taimoor
Taimoor

Reputation: 443

The only one I know of is Remix. This is a great tool for smart contract testing and interaction

And if you are planning to develop your own UI with an API. This is not the exact solution but check out drizzle. It has some good built in features which will get you started on the front-end parts and showing blockchain data

Upvotes: 0

Evgeniy Kirichenko
Evgeniy Kirichenko

Reputation: 1

You could use https://remix.ethereum.org/ There is no service that I know that can provide documentation on top of the contract.

But, it's possible to develop one. Are you interested in how it can be done?

Upvotes: 0

Related Questions