Code has been added to clipboard!

Solidity Interfaces

Example
pragma solidity ^0.4.11;

interface TokenContract {
    function transferEth(address recipientAddress, uint amountSum);
}