# Smart Contracts without the website

By [KozukiOden](https://paragraph.com/@kozukioden) · 2022-01-28

---

A typical Ethereum Classic web application has two main parts. The first is the client side which is what you see when the website loads in a browser. The other is the back end or server side which is typically written in solidity and lives on the blockchain.

There are two ways I know of that you can interact with a smart contract on Ethereum Classic without the client side.

**The First - Blockscout**

In [blockscout](https://blockscout.com/etc/mainnet/) find the contract address for the application and then go to the write section of the contract address e.g. the [write section](https://blockscout.com/etc/mainnet/address/0x59E34EF31049565D041Aec6137F40f518c2D47c1/write-contract) of this NFT smart contract. All of the write functions available on the client side will be accessible.

**The Second - MyEtherWallet**

You can also interact with the smart contract using its [ABI](https://www.quicknode.com/guides/solidity/what-is-an-abi) and the contract address. To do this:

1.  Connect your Ethereum Classic wallet to [myetherwallet](https://www.myetherwallet.com/)
    
2.  Go to the contract section and click on interact with contract
    
3.  Enter the smart contracts ABI and contract address
    
4.  On the next screen you will have access to all the available write functions in the smart contract

---

*Originally published on [KozukiOden](https://paragraph.com/@kozukioden/smart-contracts-without-the-website)*
